Salome HOME
Issue #353 constraint on 2 segments from not acive sketches
[modules/shaper.git] / src / Config / Config_AttributeMessage.cpp
index cea94547e49461fd9c6d1e363902698be512fe8e..8009b12e49514ad900f7b43d5ca27d181415dc66 100644 (file)
@@ -1,17 +1,15 @@
 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
 
-/*
- *
- */
 #include "Config_AttributeMessage.h"
 
 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()
@@ -58,3 +56,13 @@ void Config_AttributeMessage::setObligatory(bool theObligatory)
 {
   this->myIsObligatory = theObligatory;
 }
+
+const std::string& Config_AttributeMessage::caseId() const
+{
+  return myCaseId;
+}
+
+void Config_AttributeMessage::setCaseId(const std::string& theId)
+{
+  this->myCaseId = theId;
+}