X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_FeatureMessage.cpp;h=9408522e6a9f90c4ce1fcbead4f96ff3cf7217b8;hb=64d21759f9ee6423baf0de849de0b948bf09b1cc;hp=85102857bea420483f1c2a7ef2f33cb9f9887ea6;hpb=a78a826e270a123f0857360bf0d2de19df7114c1;p=modules%2Fshaper.git diff --git a/src/Config/Config_FeatureMessage.cpp b/src/Config/Config_FeatureMessage.cpp index 85102857b..9408522e6 100644 --- a/src/Config/Config_FeatureMessage.cpp +++ b/src/Config/Config_FeatureMessage.cpp @@ -3,8 +3,8 @@ */ #include "Config_FeatureMessage.h" -Config_FeatureMessage::Config_FeatureMessage(const Event_ID theId, const void* theParent) - : Event_Message(theId, theParent) +Config_FeatureMessage::Config_FeatureMessage(const Events_ID theId, const void* theParent) + : Events_Message(theId, theParent) { myId = ""; myText = ""; @@ -95,3 +95,23 @@ void Config_FeatureMessage::setPluginLibrary(const std::string& myPluginLibrary) { this->myPluginLibrary = myPluginLibrary; } + +bool Config_FeatureMessage::isUseInput() const +{ + return myUseInput; +} + +void Config_FeatureMessage::setUseInput(bool isUseInput) +{ + myUseInput = isUseInput; +} + +const std::string& Config_FeatureMessage::nestedFeatures() const +{ + return myNestedFeatures; +} + +void Config_FeatureMessage::setNestedFeatures(const std::string& theNestedFeatures) +{ + myNestedFeatures = theNestedFeatures; +}