Merge branch 'master' of /home/carl/git/libdcp
[libdcp.git] / src / xml.h
index ec352716e12ed6ba4883a38503a77268e041119a..6fc0d0fa6e3acfa93dd5f3c376c6f776b885c7a3 100644 (file)
--- a/src/xml.h
+++ b/src/xml.h
@@ -18,13 +18,13 @@ namespace xmlpp {
 
 namespace libdcp {
 
+/** @brief A helper class for XML nodes */
 class XMLNode
 {
 public:
        XMLNode ();
        XMLNode (xmlpp::Node const * node);
 
-protected:
        std::string string_child (std::string);
        std::string optional_string_child (std::string);
        ContentKind kind_child (std::string);
@@ -87,6 +87,7 @@ private:
        std::list<Glib::ustring> _taken;
 };
 
+/** @brief A helper class for XML files */     
 class XMLFile : public XMLNode
 {
 public: