Salome HOME
Merge branch 'master' of newgeom:newgeom.git
[modules/shaper.git] / src / Model / Model_Application.h
1 // File:        Model_Application.hxx
2 // Created:     28 Dec 2011
3 // Author:      Mikhail PONIKAROV
4 // Copyright:   CEA 2011
5
6 #ifndef Model_Application_HeaderFile
7 #define Model_Application_HeaderFile
8
9 #include <Model_Document.h> 
10 #include <TDocStd_Application.hxx>
11 #include <map>
12
13 // Define handle class 
14 DEFINE_STANDARD_HANDLE(Model_Application, TDocStd_Application)
15
16 /**\class Model_Application
17  * \ingroup DataModel
18  * \brief Realization of Open CASCADE application abstraction. Class for internal use only.
19  * Application supports the formats and document management. It is uses OCAF-lke
20  * architecture and just implements specific features of the module.
21  */
22 class Model_Application: public TDocStd_Application
23 {
24 public:
25   // useful methods inside of the module
26
27   // CASCADE RTTI
28   DEFINE_STANDARD_RTTI(Model_Application);
29
30   //! Retuns the application: one per process    
31   MODEL_EXPORT static Handle_Model_Application getApplication();
32   //! Returns the main document (on first call creates it) by the string identifier
33   MODEL_EXPORT std::shared_ptr<Model_Document> getDocument(std::string theDocID);
34
35 public:
36   // Redefined OCAF methods
37   //! Return name of resource (i.e. "Standard")
38   Standard_CString ResourcesName();
39   //! Return format (i.e "MDTV-Standard")
40   //! \param theFormats sequence of allowed formats for input/output
41   virtual void Formats(TColStd_SequenceOfExtendedString& theFormats);
42   //! Constructor
43   //! Use method GetInstance() method to obtain 
44   //! the static instance of the object (or derive your own application)
45   Model_Application();
46
47 private:
48   /// Map from string identifiers to created documents of an application
49   std::map<std::string, std::shared_ptr<Model_Document> > myDocs;
50 };
51
52 #endif