Salome HOME
No automatic rebuild: only on preview. Update of visualization behavior due to the...
[modules/shaper.git] / src / ModelAPI / ModelAPI_Object.h
index 7eb0cf97939b84d72f8fe26e8c19e89ec13cb0ed..9241d9b6545310c70a13dd62e1e65d30186314d4 100644 (file)
@@ -2,10 +2,11 @@
 // Created:     19 May 2014
 // Author:      Mikhail PONIKAROV
 
-#ifndef ModelAPI_Object_HeaderFile
-#define ModelAPI_Object_HeaderFile
+#ifndef ModelAPI_Object_H_
+#define ModelAPI_Object_H_
 
 #include "ModelAPI.h"
+#include "ModelAPI_Data.h"
 
 #include <boost/shared_ptr.hpp>
 
@@ -23,35 +24,57 @@ class ModelAPI_Document;
  */
 class ModelAPI_Object
 {
-  boost::shared_ptr<ModelAPI_Data> myData; ///< manager of the data model of a feature
-  boost::shared_ptr<ModelAPI_Document> myDoc; ///< document this feature belongs to
-public:
+  boost::shared_ptr<ModelAPI_Data> myData;  ///< manager of the data model of a feature
+  boost::shared_ptr<ModelAPI_Document> myDoc;  ///< document this object belongs to
+ public:
   /// By default object is displayed in the object browser.
-  virtual bool isInHistory() {return true;}
+  virtual bool isInHistory()
+  {
+    return true;
+  }
 
   /// Returns the data manager of this object: attributes
-  virtual boost::shared_ptr<ModelAPI_Data> data() {return myData;}
+  virtual boost::shared_ptr<ModelAPI_Data> data()
+  {
+    return myData;
+  }
 
   /// Returns true if object refers to the same data model instance
   virtual bool isSame(const boost::shared_ptr<ModelAPI_Object>& theObject)
-    {return theObject.get() == this;}
+  {
+    return theObject.get() == this;
+  }
 
   /// Returns document this feature belongs to
   virtual boost::shared_ptr<ModelAPI_Document> document()
-    {return myDoc;}
+  {
+    return myDoc;
+  }
 
   /// Returns the group identifier of this object
   virtual std::string groupName() = 0;
 
-protected:
+ protected:
   /// Sets the data manager of an object (document does)
-  virtual void setData(boost::shared_ptr<ModelAPI_Data> theData) 
-    {myData = theData;}
+  virtual void setData(boost::shared_ptr<ModelAPI_Data> theData)
+  {
+    myData = theData;
+  }
 
   /// Sets the data manager of an object (document does)
-  virtual void setDoc(boost::shared_ptr<ModelAPI_Document> theDoc) {myDoc = theDoc;}
+  virtual void setDoc(boost::shared_ptr<ModelAPI_Document> theDoc)
+  {
+    myDoc = theDoc;
+  }
+
+  /// removes all fields from this feature
+  MODELAPI_EXPORT virtual void erase() {
+    if (myData) myData->erase();
+    setData(DataPtr());
+  }
 
   friend class Model_Document;
+
 };
 
 typedef boost::shared_ptr<ModelAPI_Object> ObjectPtr;