Salome HOME
Revert "Synchronize adm files"
[modules/geom.git] / src / AdvancedEngine / AdvancedEngine_OperationsCreator.cc
1 // Copyright (C) 2007-2014  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 #include "GEOM_AdvancedEngine.hxx"
24
25 #include "AdvancedEngine_OperationsCreator.hh"
26
27 #include "GEOM_IAdvancedOperations_i.hh"
28
29 // Operations
30 #include <GEOMImpl_PipeTShapeDriver.hxx>
31 #include <GEOMImpl_DividedDiskDriver.hxx>
32 // #include <GEOMImpl_DividedCylinderDriver.hxx>
33 #include <GEOMImpl_SmoothingSurfaceDriver.hxx>
34 /*@@ insert new functions before this line @@ do not remove this line @@ do not remove this line @@*/
35
36 #include <TFunction_Driver.hxx>
37 #include <TFunction_DriverTable.hxx>
38
39 #include "Utils_ExceptHandlers.hxx"
40 #include "utilities.h"
41
42 //============================================================================
43 // function : Create
44 // purpose  :
45 //============================================================================
46 GEOM_IOperations_i* AdvancedEngine_OperationsCreator::Create (PortableServer::POA_ptr thePOA,
47                                                               int                     theStudyId,
48                                                               GEOM::GEOM_Gen_ptr      theEngine,
49                                                               ::GEOMImpl_Gen*         theGenImpl)
50 {
51   Unexpect aCatch(SALOME_SalomeException);
52   MESSAGE( "AdvancedEngine_OperationsCreator::Create" );
53
54   if (_mapOfOperations.find(theStudyId) == _mapOfOperations.end()) {
55     _mapOfOperations[theStudyId] = new GEOMImpl_IAdvancedOperations (theGenImpl, theStudyId);
56
57     // Advanced operations
58     TFunction_DriverTable::Get()->AddDriver(GEOMImpl_PipeTShapeDriver::GetID(),
59                                             new GEOMImpl_PipeTShapeDriver());
60     TFunction_DriverTable::Get()->AddDriver(GEOMImpl_DividedDiskDriver::GetID(),
61                                             new GEOMImpl_DividedDiskDriver());
62     //TFunction_DriverTable::Get()->AddDriver(GEOMImpl_DividedCylinderDriver::GetID(),
63     //                                        new GEOMImpl_DividedCylinderDriver());
64     TFunction_DriverTable::Get()->AddDriver(GEOMImpl_SmoothingSurfaceDriver::GetID(),
65                                             new GEOMImpl_SmoothingSurfaceDriver());
66     /*@@ insert new functions before this line @@ do not remove this line @@ do not remove this line @@*/
67   }
68
69   GEOM_IAdvancedOperations_i* aServant =
70     new GEOM_IAdvancedOperations_i (thePOA, theEngine, _mapOfOperations[theStudyId]);
71
72   return aServant;
73 }