X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_AttributeMessage.cpp;h=8009b12e49514ad900f7b43d5ca27d181415dc66;hb=5be4a656f7f45e94dc40385cf164a88375e4403b;hp=3b37a27bdcef9d45009b941ae70c779403bed470;hpb=3828ae57873e6bda6ff760b85172bd439d1b4483;p=modules%2Fshaper.git diff --git a/src/Config/Config_AttributeMessage.cpp b/src/Config/Config_AttributeMessage.cpp index 3b37a27bd..8009b12e4 100644 --- a/src/Config/Config_AttributeMessage.cpp +++ b/src/Config/Config_AttributeMessage.cpp @@ -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,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; +}