X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_XMLReader.h;h=bd9392841b131eb63816f3517db82a3c0543f5b2;hb=24f1ad2fd93475684288c899fb4fffcf05f6c21e;hp=a44d49364a9cb8d4c95b60ea1d62ca8f06fe9146;hpb=4d6a5c7e00c6d8e68c01ce5947432d9cdfbcb7a5;p=modules%2Fshaper.git diff --git a/src/Config/Config_XMLReader.h b/src/Config/Config_XMLReader.h index a44d49364..bd9392841 100644 --- a/src/Config/Config_XMLReader.h +++ b/src/Config/Config_XMLReader.h @@ -8,7 +8,7 @@ #ifndef CONFIG_XMLREADER_H_ #define CONFIG_XMLREADER_H_ -#include +#include #include #include @@ -32,25 +32,31 @@ struct _xmlDoc; */ class Config_XMLReader { -public: - CONFIG_EXPORT Config_XMLReader(const std::string& theXmlFile); - CONFIG_EXPORT virtual ~Config_XMLReader(); + public: + CONFIG_EXPORT Config_XMLReader(const std::string& theXmlFile);CONFIG_EXPORT virtual ~Config_XMLReader(); CONFIG_EXPORT void readAll(); -protected: + 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 getNodeName(xmlNodePtr theNode); std::string getProperty(xmlNodePtr theNode, const char* property); + void processValidator(xmlNodePtr theNode); + + protected: + std::string myCurrentFeature; -protected: + protected: std::string myDocumentPath; - xmlDocPtr myXmlDoc; + xmlDocPtr myXmlDoc; }; #endif /* CONFIG_XMLREADER_H_ */