Salome HOME
Debugging Translation feature.
[modules/shaper.git] / src / ModelAPI / ModelAPI_Session.cpp
index c7b784d3ac7f51fc2e63277450b4aad6cc7fc071..fba142217242795d627b5727602fdcd30e076a0e 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:        ModelAPI_Session.hxx
 // Created:     20 Mar 2014
 // Author:      Mikhail PONIKAROV
@@ -35,8 +37,6 @@
 #include <dlfcn.h>
 #endif
 
-using namespace std;
-
 #ifdef _DEBUG
 #include <iostream>
 #endif
@@ -44,10 +44,6 @@ using namespace std;
 /// Manager that will be initialized from Model package, one per application
 std::shared_ptr<ModelAPI_Session> MY_MANAGER;
 
-ModelAPI_Session::ModelAPI_Session()
-{
-}
-
 void ModelAPI_Session::setSession(std::shared_ptr<ModelAPI_Session> theManager)
 {
   MY_MANAGER = theManager;
@@ -61,7 +57,8 @@ std::shared_ptr<ModelAPI_Session> ModelAPI_Session::get()
   return MY_MANAGER;
 }
 
-const ModelAPI_EventCreator* MY_API_CREATOR = 0;  ///< instance of the events creator, one pre application
+/// instance of the events creator, one pre application
+const ModelAPI_EventCreator* MY_API_CREATOR = 0;
 
 const ModelAPI_EventCreator* ModelAPI_EventCreator::get()
 {