Salome HOME
Switch Wireframe/Shading with closing of context
[modules/shaper.git] / src / Model / Model_ResultPart.h
index af0f385e8289946c1c90c738e0ad6cd3b3545d6b..8397a9766969df1b7f1561410ff00dd7ee34717b 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:        ModelAPI_ResultPart.hxx
 // Created:     07 Jul 2014
 // Author:      Mikhail PONIKAROV
@@ -19,16 +21,22 @@ class Model_ResultPart : public ModelAPI_ResultPart
 {
  public:
   /// Returns the part-document of this result
-  MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_Document> partDoc();
+  MODEL_EXPORT virtual std::shared_ptr<ModelAPI_Document> partDoc();
   /// Part has no stored feature: this method returns NULL
-  MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_Feature> owner();
+  MODEL_EXPORT virtual std::shared_ptr<ModelAPI_Feature> owner();
+
+  /// Sets this document as current and if it is not loaded yet, loads it
+  MODEL_EXPORT virtual void activate();
 
- protected:
+protected:
   /// makes a result on a temporary feature (an action)
   Model_ResultPart();
 
   /// Sets the data manager of an object (document does), here also attributes are initialized
-  virtual void setData(boost::shared_ptr<ModelAPI_Data> theData);
+  virtual void setData(std::shared_ptr<ModelAPI_Data> theData);
+
+  /// Returns true if document is activated (loaded into the memory)
+  virtual bool isActivated();
 
   friend class Model_Document;
 };