X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_AttributeMessage.cpp;h=e1df96c3d7324451b2cbec4fc48c86edd46e04ec;hb=89682548b15252e424ffb9c1996cbeea1093b327;hp=8009b12e49514ad900f7b43d5ca27d181415dc66;hpb=5be4a656f7f45e94dc40385cf164a88375e4403b;p=modules%2Fshaper.git diff --git a/src/Config/Config_AttributeMessage.cpp b/src/Config/Config_AttributeMessage.cpp index 8009b12e4..e1df96c3d 100644 --- a/src/Config/Config_AttributeMessage.cpp +++ b/src/Config/Config_AttributeMessage.cpp @@ -9,7 +9,6 @@ Config_AttributeMessage::Config_AttributeMessage(const Events_ID theId, const vo myFeatureId = std::string(); // Feature unique id myIsObligatory = true; myIsConcealment = false; - myCaseId = std::string(); } Config_AttributeMessage::~Config_AttributeMessage() @@ -57,12 +56,13 @@ void Config_AttributeMessage::setObligatory(bool theObligatory) this->myIsObligatory = theObligatory; } -const std::string& Config_AttributeMessage::caseId() const +const std::list >& Config_AttributeMessage::getCases() const { - return myCaseId; + return myCases; } -void Config_AttributeMessage::setCaseId(const std::string& theId) +void Config_AttributeMessage::setCases(const std::list >& theCases) { - this->myCaseId = theId; + myCases = theCases; }