1 // Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 #include "GEOM_AdvancedEngine.hxx"
24 #include "AdvancedEngine_OperationsCreator.hh"
26 #include "GEOM_IAdvancedOperations_i.hh"
29 #include <GEOMImpl_PipeTShapeDriver.hxx>
30 #include <GEOMImpl_DividedDiskDriver.hxx>
31 // #include <GEOMImpl_DividedCylinderDriver.hxx>
32 #include <GEOMImpl_SmoothingSurfaceDriver.hxx>
33 /*@@ insert new functions before this line @@ do not remove this line @@ do not remove this line @@*/
35 #include <TFunction_Driver.hxx>
36 #include <TFunction_DriverTable.hxx>
38 #include "Utils_ExceptHandlers.hxx"
39 #include "utilities.h"
41 //============================================================================
44 //============================================================================
45 GEOM_IOperations_i* AdvancedEngine_OperationsCreator::Create (PortableServer::POA_ptr thePOA,
47 GEOM::GEOM_Gen_ptr theEngine,
48 ::GEOMImpl_Gen* theGenImpl)
50 Unexpect aCatch(SALOME_SalomeException);
51 MESSAGE( "AdvancedEngine_OperationsCreator::Create" );
53 if (_mapOfOperations.find(theStudyId) == _mapOfOperations.end()) {
54 _mapOfOperations[theStudyId] = new GEOMImpl_IAdvancedOperations (theGenImpl, theStudyId);
56 // Advanced operations
57 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_PipeTShapeDriver::GetID(),
58 new GEOMImpl_PipeTShapeDriver());
59 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_DividedDiskDriver::GetID(),
60 new GEOMImpl_DividedDiskDriver());
61 //TFunction_DriverTable::Get()->AddDriver(GEOMImpl_DividedCylinderDriver::GetID(),
62 // new GEOMImpl_DividedCylinderDriver());
63 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_SmoothingSurfaceDriver::GetID(),
64 new GEOMImpl_SmoothingSurfaceDriver());
65 /*@@ insert new functions before this line @@ do not remove this line @@ do not remove this line @@*/
68 GEOM_IAdvancedOperations_i* aServant =
69 new GEOM_IAdvancedOperations_i (thePOA, theEngine, _mapOfOperations[theStudyId]);