Salome HOME
Minor updates in SketchSolver plugin
[modules/shaper.git] / src / Config / Config_AttributeMessage.cpp
index 3b37a27bdcef9d45009b941ae70c779403bed470..973dd3930e2fb272d2157cad99cfc1882c0d7ce3 100644 (file)
@@ -5,10 +5,11 @@
 Config_AttributeMessage::Config_AttributeMessage(const Events_ID theId, const void* theParent)
     : Events_Message(theId, theParent)
 {
-  myAttributeId = ""; // Attribute unique id
-  myFeatureId = ""; // Feature unique id
+  myAttributeId = std::string(); // Attribute unique id
+  myFeatureId = std::string(); // Feature unique id
   myIsObligatory = true;
   myIsConcealment = false;
+  myCaseId = std::string();
 }
 
 Config_AttributeMessage::~Config_AttributeMessage()
@@ -55,3 +56,23 @@ void Config_AttributeMessage::setObligatory(bool theObligatory)
 {
   this->myIsObligatory = theObligatory;
 }
+
+const std::string& Config_AttributeMessage::caseId() const
+{
+  return myCaseId;
+}
+
+const std::string& Config_AttributeMessage::switchId() const
+{
+  return mySwitchId;
+}
+
+void Config_AttributeMessage::setCaseId(const std::string& theId)
+{
+  this->myCaseId = theId;
+}
+
+void Config_AttributeMessage::setSwitchId(const std::string& theId)
+{
+  this->mySwitchId = theId;
+}