X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_ResultPart.h;h=11cae2bae8135e5063b311774cab7ecce8795003;hb=8778f58d6a8decdccf40842a2a28fde15cf7fce7;hp=64be92e3cea9428496ff22a7eeaa11c185c5c0e4;hpb=3874b57fe5aba25ff5aee2a07654fc23c1ee8eb0;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_ResultPart.h b/src/ModelAPI/ModelAPI_ResultPart.h index 64be92e3c..11cae2bae 100644 --- a/src/ModelAPI/ModelAPI_ResultPart.h +++ b/src/ModelAPI/ModelAPI_ResultPart.h @@ -22,13 +22,10 @@ class ModelAPI_ResultPart : public ModelAPI_Result { public: /// Returns the group identifier of this result - virtual std::string groupName() - { - return group(); - } + MODELAPI_EXPORT virtual std::string groupName(); /// Returns the group identifier of this result - static std::string group() + inline static std::string group() { static std::string MY_GROUP = "Parts"; return MY_GROUP; @@ -46,6 +43,9 @@ class ModelAPI_ResultPart : public ModelAPI_Result /// Sets this document as current and if it is not loaded yet, loads it virtual void activate() = 0; + + /// Returns true if document is activated (loaded into the memory) + virtual bool isActivated() = 0; }; //! Pointer on feature object