X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_XMLReader.h;h=8915147e9eb5c8b88a550d642e38ec2d6728bd65;hb=2b4f4bf278c841500eb29bb5d204690427b0d56b;hp=bdff8a00e9bf94425e747adecaf46ac370f9c41a;hpb=e1f8fb3cfc1ee565db16fbbd9fe6f65121c4577c;p=modules%2Fshaper.git diff --git a/src/Config/Config_XMLReader.h b/src/Config/Config_XMLReader.h index bdff8a00e..8915147e9 100644 --- a/src/Config/Config_XMLReader.h +++ b/src/Config/Config_XMLReader.h @@ -8,44 +8,51 @@ #ifndef CONFIG_XMLREADER_H_ #define CONFIG_XMLREADER_H_ -#include "Config.h" -#include "Config_FeatureMessage.h" +#include -#include #include +#include -//Forward declaration for xmlNodePtr. +//>> Forward declaration of xmlNodePtr. typedef struct _xmlNode xmlNode; typedef xmlNode *xmlNodePtr; struct _xmlNode; +//<< + +//>> Forward declaration of xmlDocPtr. +typedef struct _xmlDoc xmlDoc; +typedef xmlDoc *xmlDocPtr; +struct _xmlDoc; +//<< -class CONFIG_EXPORT Config_XMLReader +/* + * 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(); + + CONFIG_EXPORT void readAll(); - 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); - /* - * 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, ...); - -private: + +protected: std::string myDocumentPath; + xmlDocPtr myXmlDoc; }; #endif /* CONFIG_XMLREADER_H_ */