Salome HOME
Merge branch 'Dev_0.6.1' of newgeom:newgeom into Dev_0.6.1
[modules/shaper.git] / src / ModelAPI / ModelAPI_ResultPart.h
index 82e0cee5d79f28a663ad96fc341c149a7734b1a3..ce1ea03af1c9ad6c4a0a79b4670e0d96b39e02eb 100644 (file)
@@ -1,12 +1,16 @@
+// 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"
 
+#include <string>
+
 /**\class ModelAPI_ResultPart
  * \ingroup DataModel
  * \brief The Part document, result of a creation of new part feature.
  */
 class ModelAPI_ResultPart : public ModelAPI_Result
 {
-public:
+ public:
   /// Returns the group identifier of this result
   virtual std::string groupName()
-    { return group(); }
+  {
+    return group();
+  }
 
   /// Returns the group identifier of this result
   static std::string group()
-    {static std::string MY_GROUP = "Parts"; return MY_GROUP;}
+  {
+    static std::string MY_GROUP = "Parts";
+    return MY_GROUP;
+  }
 
   /// part document reference attribute
   inline static const std::string& DOC_REF()
@@ -33,10 +42,16 @@ public:
   }
 
   /// Returns the part-document of this result
-  virtual boost::shared_ptr<ModelAPI_Document> partDoc() = 0;
+  virtual std::shared_ptr<ModelAPI_Document> 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<ModelAPI_ResultPart> ResultPartPtr;
+typedef std::shared_ptr<ModelAPI_ResultPart> ResultPartPtr;
 
 #endif