Salome HOME
Sources formated according to the codeing standards
[modules/shaper.git] / src / ModelAPI / ModelAPI_PluginManager.cpp
index 72deaba2c695a78614a197126d513a1762cfbb12..2b83d0aedd99c6fb19ead5b0732b222441553099 100644 (file)
@@ -43,30 +43,29 @@ ModelAPI_PluginManager::ModelAPI_PluginManager()
 {
 }
 
-void ModelAPI_PluginManager::setPluginManager(
-  boost::shared_ptr<ModelAPI_PluginManager> theManager)
+void ModelAPI_PluginManager::setPluginManager(boost::shared_ptr<ModelAPI_PluginManager> theManager)
 {
   MY_MANAGER = theManager;
 }
 
 boost::shared_ptr<ModelAPI_PluginManager> ModelAPI_PluginManager::get()
 {
-  if (!MY_MANAGER) { // import Model library that implements this interface of ModelAPI
+  if (!MY_MANAGER) {  // import Model library that implements this interface of ModelAPI
     Config_ModuleReader::loadLibrary("Model");
   }
   return MY_MANAGER;
 }
 
-const ModelAPI_EventCreator* MY_CREATOR = 0; ///< instance of the events creator, one pre application
+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
+  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;