Salome HOME
Implimentation of the Config XML Reader
[modules/shaper.git] / src / Config / Config_Message.h
1 #ifndef CONFIG_MESSAGE_H
2 #define CONFIG_MESSAGE_H
3
4 #include "Config.h"
5
6 #include <Event_Message.hxx>
7 #include <string>
8
9 class CONFIG_EXPORT Config_FeatureMessage : public Event_Message
10 {
11 public:
12   std::string m_id;
13   std::string m_text;
14   std::string m_tooltip;
15   std::string m_icon;
16   std::string m_keysequence;
17
18   std::string m_group;
19
20 public:
21   //const Event_ID theID, const void* theSender = 0
22   Config_FeatureMessage(const Event_ID theId, const void* theParent = 0);
23
24 };
25
26
27 #endif // CONFIG_MESSAGE_H