X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_XMLReader.h;h=119bd71c132542d662f3fb5b9f152207d4955fb1;hb=c6a92152ecb67e86489d0a17c8df5fa2e5bcf84e;hp=01ad541a4eefcb0c036aa70abad39d184f669016;hpb=637bc35625b89379def6b9f9ff0915d32664babd;p=modules%2Fshaper.git diff --git a/src/Config/Config_XMLReader.h b/src/Config/Config_XMLReader.h index 01ad541a4..119bd71c1 100644 --- a/src/Config/Config_XMLReader.h +++ b/src/Config/Config_XMLReader.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + /* * Config_XMLReader.h * @@ -8,7 +10,7 @@ #ifndef CONFIG_XMLREADER_H_ #define CONFIG_XMLREADER_H_ -#include +#include #include #include @@ -30,34 +32,33 @@ struct _xmlDoc; * for all xml operations. * */ -class CONFIG_EXPORT Config_XMLReader +class Config_XMLReader { -public: - Config_XMLReader(const std::string& theXmlFile); - virtual ~Config_XMLReader(); + public: + CONFIG_EXPORT Config_XMLReader(const std::string& theXmlFile);CONFIG_EXPORT virtual ~Config_XMLReader(); + + CONFIG_EXPORT void readAll(); - void readAll(); + public: + CONFIG_EXPORT xmlNodePtr findRoot(); -protected: + 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); - /* - * Please note that this function should be called with NULL last argument. - * In example: isNode(aNode, "type1", ["type2", ...], NULL); - * ", NULL" is required to use unlimited number of arguments. - * TODO(sbh): find a way to simplify calling this method. - */ - bool isNode(xmlNodePtr theNode, const char* name, ...); - -protected: + std::string getNodeName(xmlNodePtr theNode); + void processValidator(xmlNodePtr theNode); + void processSelectionFilter(xmlNodePtr theNode); + + protected: + std::string myCurrentFeature; + + protected: std::string myDocumentPath; - xmlDocPtr myXmlDoc; + xmlDocPtr myXmlDoc; }; #endif /* CONFIG_XMLREADER_H_ */