From 506fb1b04d4bfa654db64c07fa940462dee90ba6 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 9 Oct 2015 18:17:03 +0100 Subject: Remove thought-pointless use of Glib::ustring. --- src/cxml.h | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) (limited to 'src') diff --git a/src/cxml.h b/src/cxml.h index 75af36b..110a224 100644 --- a/src/cxml.h +++ b/src/cxml.h @@ -33,8 +33,6 @@ #undef check #endif -#include - namespace xmlpp { class Node; class DomParser; @@ -71,7 +69,7 @@ class Node { public: Node (); - + /** Construct a Node from an xmlpp::Node. This class will * not destroy the xmlpp::Node. * @param node xmlpp::Node. @@ -138,7 +136,7 @@ public: u >> n; return n; } - + /** This will mark a child as to be ignored when calling done() */ void ignore_child (std::string) const; @@ -205,12 +203,12 @@ public: xmlpp::Node* node () const { return _node; } - + protected: xmlpp::Node* _node; - + private: - mutable std::list _taken; + mutable std::list _taken; }; typedef boost::shared_ptr NodePtr; @@ -228,14 +226,14 @@ public: void read_file (boost::filesystem::path); void read_stream (std::istream &); void read_string (std::string); - + std::string root_name () const { return _root_name; } - + private: void take_root_node (); - + xmlpp::DomParser* _parser; std::string _root_name; }; -- cgit v1.2.3