]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/Config/Config_FeatureReader.h
Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / Config / Config_FeatureReader.h
index 76d7635c03c1ed970c1737765042a9f717b2f7b6..12517a5df395849fdaeac3753325411305347047 100644 (file)
@@ -8,20 +8,38 @@
 #ifndef CONFIG_FEATUREREADER_H_
 #define CONFIG_FEATUREREADER_H_
 
+#include <Config.h>
 #include <Config_XMLReader.h>
 
-class CONFIG_EXPORT Config_FeatureReader: public Config_XMLReader
+#include <string>
+#include <list>
+
+class Config_FeatureMessage;
+
+class Config_FeatureReader: public Config_XMLReader
 {
 public:
-  Config_FeatureReader(const std::string& theXmlFile);
+  Config_FeatureReader(const std::string& theXmlFile,
+                       const std::string& theLibraryName,
+                       const char* theEventGenerated = 0);
   virtual ~Config_FeatureReader();
 
+  std::list<std::string> features() const;
+
 protected:
   void processNode(xmlNodePtr aNode);
   bool processChildren(xmlNodePtr aNode);
 
   void fillFeature(xmlNodePtr theRoot, Config_FeatureMessage& outFeatureMessage);
 
+private:
+  std::string myLastWorkbench;
+  std::string myLastGroup;
+  std::string myLibraryName;
+
+  std::list<std::string> myFeatures;
+  /// event generated on feature data sending, by default it is "FeatureEvent"
+  const char* myEventGenerated;
 };
 
 #endif /* CONFIG_FEATUREREADER_H_ */