Salome HOME
Copyrights update
[modules/geom.git] / src / GEOM / GEOM_Application.hxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/
19 //
20 //  File   : GEOM_Application.hxx
21 //  Module : GEOM
22
23 #ifndef _GEOM_Application_HeaderFile
24 #define _GEOM_Application_HeaderFile
25
26 #ifndef _Standard_HeaderFile
27 #include <Standard.hxx>
28 #endif
29 #ifndef _Handle_GEOM_Application_HeaderFile
30 #include <Handle_GEOM_Application.hxx>
31 #endif
32
33 #ifndef _TDocStd_Application_HeaderFile
34 #include <TDocStd_Application.hxx>
35 #endif
36 #ifndef _Standard_CString_HeaderFile
37 #include <Standard_CString.hxx>
38 #endif
39 class TColStd_SequenceOfExtendedString;
40
41
42 class GEOM_Application : public TDocStd_Application {
43
44 public:
45
46     inline void* operator new(size_t,void* anAddress) 
47       {
48         return anAddress;
49       }
50     inline void* operator new(size_t size) 
51       { 
52         return Standard::Allocate(size); 
53       }
54     inline void  operator delete(void *anAddress) 
55       { 
56         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
57       }
58 //    inline void  operator delete(void *anAddress, size_t size) 
59 //      { 
60 //        if (anAddress) Standard::Free((Standard_Address&)anAddress,size); 
61 //      }
62  // Methods PUBLIC
63  // 
64 Standard_EXPORT GEOM_Application();
65 Standard_EXPORT virtual  void Formats(TColStd_SequenceOfExtendedString& Formats) ;
66 Standard_EXPORT Standard_CString ResourcesName() ;
67 Standard_EXPORT ~GEOM_Application();
68
69
70
71
72  // Type management
73  //
74  Standard_EXPORT friend Handle_Standard_Type& GEOM_Application_Type_();
75  Standard_EXPORT const Handle(Standard_Type)& DynamicType() const;
76  Standard_EXPORT Standard_Boolean IsKind(const Handle(Standard_Type)&) const;
77
78 protected:
79
80  // Methods PROTECTED
81  // 
82
83
84  // Fields PROTECTED
85  //
86
87
88 private: 
89
90  // Methods PRIVATE
91  // 
92
93
94  // Fields PRIVATE
95  //
96
97
98 };
99
100
101
102
103
104 // other inline functions and methods (like "C++: function call" methods)
105 //
106
107
108 #endif