]> SALOME platform Git repositories - modules/shaper.git/blob - src/Config/Config_SelectionFilterMessage.cpp
Salome HOME
05a82a096906abdc46d930a26f22221374b495be
[modules/shaper.git] / src / Config / Config_SelectionFilterMessage.cpp
1 /*
2  * Config_SelectionFilterMessage.cpp
3  *
4  *  Created on: 08 Jul 2014
5  *      Author: sbh
6  */
7
8 #include <Config_SelectionFilterMessage.h>
9
10 Config_SelectionFilterMessage::Config_SelectionFilterMessage(const Events_ID theId,
11                                                              const void* theParent)
12     : Events_Message(theId, theParent)
13 {
14   mySelectionFilterId = "";
15   myFeatureId = "";
16   myAttributeId = "";
17 }
18
19 Config_SelectionFilterMessage::~Config_SelectionFilterMessage()
20 {
21 }
22
23 const std::string& Config_SelectionFilterMessage::selectionFilterId() const
24 {
25   return mySelectionFilterId;
26 }
27
28 const std::string& Config_SelectionFilterMessage::featureId() const
29 {
30   return myFeatureId;
31 }
32
33 void Config_SelectionFilterMessage::setSelectionFilterId(const std::string& theId)
34 {
35   mySelectionFilterId = theId;
36 }
37
38 const std::string& Config_SelectionFilterMessage::attributeId() const
39 {
40   return myAttributeId;
41 }
42
43 void Config_SelectionFilterMessage::setFeatureId(const std::string& theId)
44 {
45   myFeatureId = theId;
46 }
47
48 void Config_SelectionFilterMessage::setAttributeId(const std::string& theId)
49 {
50   myAttributeId = theId;
51 }
52