#ifndef COMMENT_H #define COMMENT_H #include "Node.h" namespace xml { class Comment : public Node { protected: std::string text; public: Comment(); virtual ~Comment(); virtual std::istream& load(std::istream& in); virtual std::ostream& print(std::ostream& out, int depth = 0) const; private: DECLARE_COPY_METHODS(Comment) }; } // namespace xml #endif // COMMENT_H