Salome HOME
Initial version of redesign of working with results
[modules/shaper.git] / src / Model / Model_Update.h
index d49c1c01e1c74aac7c32c020f5fa85f9979f8be1..3d5e58a01b601bc31397feca4017bfb52ef673b6 100644 (file)
@@ -11,6 +11,7 @@
 #include <set>
 #include <map>
 
+class ModelAPI_Object;
 class ModelAPI_Feature;
 
 /**\class Model_Update
@@ -20,9 +21,9 @@ class ModelAPI_Feature;
 class Model_Update : public Events_Listener
 {
   ///< initial set of updated features that must be processed
-  std::set<boost::shared_ptr<ModelAPI_Feature> > myInitial;
+  std::set<boost::shared_ptr<ModelAPI_Object> > myInitial;
   ///< already updated and processed features and modificated feature flag
-  std::map<boost::shared_ptr<ModelAPI_Feature>, bool> myUpdated;
+  std::map<boost::shared_ptr<ModelAPI_Object>, bool> myUpdated;
 public:
   /// Is called only once, on startup of the application
   Model_Update();