X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_ResultPart.h;h=11cae2bae8135e5063b311774cab7ecce8795003;hb=8778f58d6a8decdccf40842a2a28fde15cf7fce7;hp=2f6feb5e5bae06a44166cd607656b943661ee65d;hpb=6333682060ad5116559e12d5c212f1a1f199b3a0;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_ResultPart.h b/src/ModelAPI/ModelAPI_ResultPart.h index 2f6feb5e5..11cae2bae 100644 --- a/src/ModelAPI/ModelAPI_ResultPart.h +++ b/src/ModelAPI/ModelAPI_ResultPart.h @@ -1,9 +1,11 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: ModelAPI_ResultPart.h // Created: 07 Jul 2014 // Author: Mikhail PONIKAROV -#ifndef ModelAPI_ResultPart_HeaderFile -#define ModelAPI_ResultPart_HeaderFile +#ifndef ModelAPI_ResultPart_H_ +#define ModelAPI_ResultPart_H_ #include "ModelAPI_Result.h" @@ -18,14 +20,16 @@ */ class ModelAPI_ResultPart : public ModelAPI_Result { -public: + 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() - {static std::string MY_GROUP = "Parts"; return MY_GROUP;} + inline static std::string group() + { + static std::string MY_GROUP = "Parts"; + return MY_GROUP; + } /// part document reference attribute inline static const std::string& DOC_REF() @@ -35,10 +39,16 @@ public: } /// Returns the part-document of this result - virtual boost::shared_ptr partDoc() = 0; + virtual std::shared_ptr partDoc() = 0; + + /// 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 -typedef boost::shared_ptr ResultPartPtr; +typedef std::shared_ptr ResultPartPtr; #endif