1 // Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #ifndef _GEOMImpl_GEN_HXX_
22 #define _GEOMImpl_GEN_HXX_
26 #include "GEOMImpl_IBasicOperations.hxx"
27 #include "GEOMImpl_ITransformOperations.hxx"
28 #include "GEOMImpl_I3DPrimOperations.hxx"
29 #include "GEOMImpl_IShapesOperations.hxx"
30 #include "GEOMImpl_IBlocksOperations.hxx"
31 #include "GEOMImpl_IBooleanOperations.hxx"
32 #include "GEOMImpl_IHealingOperations.hxx"
33 #include "GEOMImpl_ICurvesOperations.hxx"
34 #include "GEOMImpl_ILocalOperations.hxx"
35 #include "GEOMImpl_IInsertOperations.hxx"
36 #include "GEOMImpl_IMeasureOperations.hxx"
37 #include "GEOMImpl_IGroupOperations.hxx"
38 #include "GEOM_Engine.hxx"
41 #include <SALOME_WNT.hxx>
43 #define SALOME_WNT_EXPORT
46 class SALOME_WNT_EXPORT GEOMImpl_Gen : public GEOM_Engine
52 GEOMImpl_IBasicOperations* GetIBasicOperations(int theDocID);
54 GEOMImpl_ITransformOperations* GetITransformOperations(int theDocID);
56 GEOMImpl_I3DPrimOperations* GetI3DPrimOperations(int theDocID);
58 GEOMImpl_IShapesOperations* GetIShapesOperations(int theDocID);
60 GEOMImpl_IBlocksOperations* GetIBlocksOperations(int theDocID);
62 GEOMImpl_IMeasureOperations* GetIMeasureOperations(int theDocID);
64 GEOMImpl_IBooleanOperations* GetIBooleanOperations(int theDocID);
66 GEOMImpl_ICurvesOperations* GetICurvesOperations(int theDocID);
68 GEOMImpl_ILocalOperations* GetILocalOperations(int theDocID);
70 GEOMImpl_IInsertOperations* GetIInsertOperations(int theDocID);
72 GEOMImpl_IHealingOperations* GetIHealingOperations(int theDocID);
74 GEOMImpl_IGroupOperations* GetIGroupOperations(int theDocID);
78 std::map <int, GEOMImpl_IBasicOperations*> _mapOfBasicOperations;
79 std::map <int, GEOMImpl_ITransformOperations*> _mapOfTransformOperations;
80 std::map <int, GEOMImpl_I3DPrimOperations*> _mapOf3DPrimOperations;
81 std::map <int, GEOMImpl_IShapesOperations*> _mapOfShapesOperations;
82 std::map <int, GEOMImpl_IBlocksOperations*> _mapOfBlocksOperations;
83 std::map <int, GEOMImpl_IBooleanOperations*> _mapOfBooleanOperations;
84 std::map <int, GEOMImpl_IHealingOperations*> _mapOfHealingOperations;
85 std::map <int, GEOMImpl_ICurvesOperations*> _mapOfCurvesOperations;
86 std::map <int, GEOMImpl_ILocalOperations*> _mapOfLocalOperations;
87 std::map <int, GEOMImpl_IInsertOperations*> _mapOfInsertOperations;
88 std::map <int, GEOMImpl_IMeasureOperations*> _mapOfMeasureOperations;
89 std::map <int, GEOMImpl_IGroupOperations*> _mapOfGroupOperations;