Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / Model / Model_Application.cxx
1 // File:        Model_Application.cxx
2 // Created:     Fri Sep 2 2011
3 // Author:      Mikhail PONIKAROV
4
5 #include <Model_Application.h>
6 #include <Model_Document.h>
7
8 IMPLEMENT_STANDARD_HANDLE(Model_Application, TDocStd_Application)
9 IMPLEMENT_STANDARD_RTTIEXT(Model_Application, TDocStd_Application)
10
11 using namespace std;
12
13 static Handle_Model_Application TheApplication = new Model_Application;
14
15 //=======================================================================
16 //function : getApplication
17 //purpose  : 
18 //=======================================================================
19 Handle(Model_Application) Model_Application::getApplication()
20 {
21   return TheApplication;
22 }
23
24 //=======================================================================
25 //function : getDocument
26 //purpose  : 
27 //=======================================================================
28 std::shared_ptr<Model_Document> Model_Application::getDocument(string theDocID)
29 {
30   if (myDocs.find(theDocID) != myDocs.end())
31     return myDocs[theDocID];
32
33   std::shared_ptr<Model_Document> aNew(new Model_Document(theDocID));
34   myDocs[theDocID] = aNew;
35   return aNew;
36 }
37
38 void Model_Application::deleteDocument(string theDocID)
39 {
40   myDocs.erase(theDocID);
41 }
42
43 //=======================================================================
44 //function : OCAFApp_Application
45 //purpose  : 
46 //=======================================================================
47 Model_Application::Model_Application()
48 {
49   // store handle to the application to avoid nullification
50   static Handle(Model_Application) TheKeepHandle;
51   TheKeepHandle = this;
52 }
53
54 //=======================================================================
55 //function : Formats
56 //purpose  : 
57 //=======================================================================
58 void Model_Application::Formats(TColStd_SequenceOfExtendedString& theFormats)
59 {
60   theFormats.Append(TCollection_ExtendedString("BinOcaf")); // standard binary schema
61 }
62
63 //=======================================================================
64 //function : ResourcesName
65 //purpose  : 
66 //=======================================================================
67 Standard_CString Model_Application::ResourcesName()
68 {
69   return Standard_CString("Standard");
70 }