X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_XMLReader.h;h=bcd8ddfdf4bfe5d27bdd6305060a40298cb714eb;hb=2e3e7b15bec99425564665f1e58fa8c013b6ec3c;hp=9761ada43e82222dcfb5a9e762c5ffd806e86810;hpb=733ef3a952e2cd2d5df92667569eb9096200da27;p=modules%2Fshaper.git diff --git a/src/Config/Config_XMLReader.h b/src/Config/Config_XMLReader.h index 9761ada43..bcd8ddfdf 100644 --- a/src/Config/Config_XMLReader.h +++ b/src/Config/Config_XMLReader.h @@ -8,36 +8,51 @@ #ifndef CONFIG_XMLREADER_H_ #define CONFIG_XMLREADER_H_ -#include "Config.h" -#include "Config_Message.h" +#include +#include #include -//Forward declaration for xmlNodePtr. +//>> Forward declaration of xmlNodePtr. typedef struct _xmlNode xmlNode; typedef xmlNode *xmlNodePtr; struct _xmlNode; +//<< -class CONFIG_EXPORT Config_XMLReader { +//>> Forward declaration of xmlDocPtr. +typedef struct _xmlDoc xmlDoc; +typedef xmlDoc *xmlDocPtr; +struct _xmlDoc; +//<< + +/* + * Base class for all libxml readers. Provides high-level API + * for all xml operations. + * + */ +class Config_XMLReader +{ public: - Config_XMLReader(const std::string& theXmlFile); - virtual ~Config_XMLReader(); + CONFIG_EXPORT Config_XMLReader(const std::string& theXmlFile); + CONFIG_EXPORT virtual ~Config_XMLReader(); - void readAll(); + CONFIG_EXPORT void readAll(); + +public: + CONFIG_EXPORT xmlNodePtr findRoot(); protected: virtual void processNode(xmlNodePtr aNode); virtual bool processChildren(xmlNodePtr aNode); - xmlNodePtr findRoot(); void readRecursively(xmlNodePtr theParent); xmlNodePtr node(void* theNode); std::string getProperty(xmlNodePtr theNode, const char* property); - bool isNode(xmlNodePtr theNode, const char* name); -private: - std::string m_DocumentPath; +protected: + std::string myDocumentPath; + xmlDocPtr myXmlDoc; }; #endif /* CONFIG_XMLREADER_H_ */