Salome HOME
Search module's features in different plugins.
[modules/shaper.git] / src / Config / Config_FeatureReader.h
1 /*
2  * Config_FeatureReader.h
3  *
4  *  Created on: Mar 20, 2014
5  *      Author: sbh
6  */
7
8 #ifndef CONFIG_FEATUREREADER_H_
9 #define CONFIG_FEATUREREADER_H_
10
11 #include <Config.h>
12 #include <Config_XMLReader.h>
13
14 #include <string>
15 #include <list>
16
17 class Config_FeatureMessage;
18
19 class Config_FeatureReader: public Config_XMLReader
20 {
21 public:
22   Config_FeatureReader(const std::string& theXmlFile,
23                        const std::string& theLibraryName,
24                        const char* theEventGenerated = 0);
25   virtual ~Config_FeatureReader();
26
27   std::list<std::string> features() const;
28
29 protected:
30   void processNode(xmlNodePtr aNode);
31   bool processChildren(xmlNodePtr aNode);
32
33   void fillFeature(xmlNodePtr theRoot, Config_FeatureMessage& outFeatureMessage);
34
35 private:
36   std::string myLastWorkbench;
37   std::string myLastGroup;
38   std::string myLibraryName;
39
40   std::list<std::string> myFeatures;
41   /// event generated on feature data sending, by default it is "FeatureEvent"
42   const char* myEventGenerated;
43 };
44
45 #endif /* CONFIG_FEATUREREADER_H_ */