Salome HOME
Added AttributeBoolean to python API
[modules/shaper.git] / src / ModelAPI / ModelAPI_Session.cpp
1 // File:        ModelAPI_Session.hxx
2 // Created:     20 Mar 2014
3 // Author:      Mikhail PONIKAROV
4
5 #include <ModelAPI_Session.h>
6 // to avoid unresolved ModelAPI_Document()
7 #include <ModelAPI_Document.h>
8 // to avoid unresolved ModelAPI_Feature()
9 #include <ModelAPI_Feature.h>
10 #include <ModelAPI_Object.h>
11 // to avoid unresolved ModelAPI_Data()
12 #include <ModelAPI_Data.h>
13 // to avoid unresolved ModelAPI_Plugin()
14 #include <ModelAPI_Plugin.h>
15 #include <ModelAPI_Attribute.h>
16 #include <ModelAPI_AttributeDocRef.h>
17 #include <ModelAPI_AttributeDouble.h>
18 #include <ModelAPI_AttributeBoolean.h>
19 #include <ModelAPI_AttributeInteger.h>
20 #include <ModelAPI_AttributeString.h>
21 #include <ModelAPI_AttributeReference.h>
22 #include <ModelAPI_AttributeRefAttr.h>
23 #include <ModelAPI_AttributeRefList.h>
24 #include <ModelAPI_AttributeBoolean.h>
25 #include <ModelAPI_Events.h>
26 #include <ModelAPI_Validator.h>
27
28 #include <Config_ModuleReader.h>
29
30 #ifdef WIN32
31 #include <windows.h>
32 #else
33 #include <dlfcn.h>
34 #endif
35
36 using namespace std;
37
38 #ifdef _DEBUG
39 #include <iostream>
40 #endif
41
42 /// Manager that will be initialized from Model package, one per application
43 boost::shared_ptr<ModelAPI_Session> MY_MANAGER;
44
45 ModelAPI_Session::ModelAPI_Session()
46 {
47 }
48
49 void ModelAPI_Session::setSession(boost::shared_ptr<ModelAPI_Session> theManager)
50 {
51   MY_MANAGER = theManager;
52 }
53
54 boost::shared_ptr<ModelAPI_Session> ModelAPI_Session::get()
55 {
56   if (!MY_MANAGER) {  // import Model library that implements this interface of ModelAPI
57     Config_ModuleReader::loadLibrary("Model");
58   }
59   return MY_MANAGER;
60 }
61
62 const ModelAPI_EventCreator* MY_API_CREATOR = 0;  ///< instance of the events creator, one pre application
63
64 const ModelAPI_EventCreator* ModelAPI_EventCreator::get()
65 {
66   if (!MY_API_CREATOR) {  // import Model library that implements this interface of ModelAPI
67     Config_ModuleReader::loadLibrary("Model");
68   }
69   return MY_API_CREATOR;
70 }
71
72 void ModelAPI_EventCreator::set(const ModelAPI_EventCreator* theCreator)
73 {
74   MY_API_CREATOR = theCreator;
75 }