Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / ModelAPI / ModelAPI_PluginManager.cpp
index 4cf100d5c12719b0fd6f02d6267e08065190f2b8..72deaba2c695a78614a197126d513a1762cfbb12 100644 (file)
@@ -19,6 +19,8 @@
 #include <ModelAPI_AttributeReference.h>
 #include <ModelAPI_AttributeRefAttr.h>
 #include <ModelAPI_AttributeRefList.h>
+#include <ModelAPI_Events.h>
+#include <ModelAPI_Validator.h>
 
 #include <Config_ModuleReader.h>
 
@@ -41,7 +43,7 @@ ModelAPI_PluginManager::ModelAPI_PluginManager()
 {
 }
 
-void ModelAPI_PluginManager::SetPluginManager(
+void ModelAPI_PluginManager::setPluginManager(
   boost::shared_ptr<ModelAPI_PluginManager> theManager)
 {
   MY_MANAGER = theManager;
@@ -54,3 +56,18 @@ boost::shared_ptr<ModelAPI_PluginManager> ModelAPI_PluginManager::get()
   }
   return MY_MANAGER;
 }
+
+const ModelAPI_EventCreator* MY_CREATOR = 0; ///< instance of the events creator, one pre application
+
+const ModelAPI_EventCreator* ModelAPI_EventCreator::get()
+{
+  if (!MY_CREATOR) { // import Model library that implements this interface of ModelAPI
+    Config_ModuleReader::loadLibrary("Model");
+  }
+  return MY_CREATOR;
+}
+  
+void ModelAPI_EventCreator::set(const ModelAPI_EventCreator* theCreator)
+{
+  MY_CREATOR = theCreator;
+}