Salome HOME
dcd430f1950bfcdb58c16f176411186ebf0add69
[modules/geom.git] / src / GEOMImpl / GEOMImpl_Gen.hxx
1 // Copyright (C) 2007-2022  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #ifndef _GEOMImpl_GEN_HXX_
24 #define _GEOMImpl_GEN_HXX_
25
26 #include <GEOM_GEOMImpl.hxx>
27
28 #include <map>
29
30 #include "GEOMImpl_IBasicOperations.hxx"
31 #include "GEOMImpl_ITransformOperations.hxx"
32 #include "GEOMImpl_I3DPrimOperations.hxx"
33 #include "GEOMImpl_IShapesOperations.hxx"
34 #include "GEOMImpl_IBlocksOperations.hxx"
35 #include "GEOMImpl_IBooleanOperations.hxx"
36 #include "GEOMImpl_IHealingOperations.hxx"
37 #include "GEOMImpl_ICurvesOperations.hxx"
38 #include "GEOMImpl_ILocalOperations.hxx"
39 #include "GEOMImpl_IInsertOperations.hxx"
40 #include "GEOMImpl_IMeasureOperations.hxx"
41 #include "GEOMImpl_IGroupOperations.hxx"
42 #include "GEOMImpl_IFieldOperations.hxx"
43 #include "GEOMImpl_ITestOperations.hxx"
44 #include "GEOM_Engine.hxx"
45
46 class GEOMIMPL_EXPORT GEOMImpl_Gen : public GEOM_Engine
47 {
48  public:
49   GEOMImpl_Gen();
50   ~GEOMImpl_Gen();
51
52   GEOMImpl_IBasicOperations* GetIBasicOperations();
53
54   GEOMImpl_ITransformOperations* GetITransformOperations();
55
56   GEOMImpl_I3DPrimOperations* GetI3DPrimOperations();
57
58   GEOMImpl_IShapesOperations* GetIShapesOperations();
59
60   GEOMImpl_IBlocksOperations* GetIBlocksOperations();
61
62   GEOMImpl_IMeasureOperations* GetIMeasureOperations();
63
64   GEOMImpl_IBooleanOperations* GetIBooleanOperations();
65
66   GEOMImpl_ICurvesOperations* GetICurvesOperations();
67
68   GEOMImpl_ILocalOperations* GetILocalOperations();
69
70   GEOMImpl_IInsertOperations* GetIInsertOperations();
71
72   GEOMImpl_IHealingOperations* GetIHealingOperations();
73
74   GEOMImpl_IGroupOperations* GetIGroupOperations();
75
76   GEOMImpl_IFieldOperations* GetIFieldOperations();
77
78   GEOMImpl_ITestOperations* GetITestOperations();
79
80  private:
81
82   GEOMImpl_IBasicOperations*     _BasicOperations;
83   GEOMImpl_ITransformOperations* _TransformOperations;
84   GEOMImpl_I3DPrimOperations*    _3DPrimOperations;
85   GEOMImpl_IShapesOperations*    _ShapesOperations;
86   GEOMImpl_IBlocksOperations*    _BlocksOperations;
87   GEOMImpl_IBooleanOperations*   _BooleanOperations;
88   GEOMImpl_IHealingOperations*   _HealingOperations;
89   GEOMImpl_ICurvesOperations*    _CurvesOperations;
90   GEOMImpl_ILocalOperations*     _LocalOperations;
91   GEOMImpl_IInsertOperations*    _InsertOperations;
92   GEOMImpl_IMeasureOperations*   _MeasureOperations;
93   GEOMImpl_IGroupOperations*     _GroupOperations;
94   GEOMImpl_IFieldOperations*     _FieldOperations;
95   GEOMImpl_ITestOperations*      _TestOperations;
96 };
97
98 #endif