1 // Copyright (C) 2014-2016 CEA/DEN, EDF R&D, OPEN CASCADE
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #include "XAOPlugin_OperationsCreator.hxx"
22 #include "XAOPlugin_IOperations_i.hh"
23 #include "XAOPlugin_IOperations.hxx"
24 #include "XAOPlugin_Driver.hxx"
25 #include "XAOPlugin_IECallBack.hxx"
28 #include <Utils_ExceptHandlers.hxx>
29 #include <utilities.h>
32 #include <TFunction_DriverTable.hxx>
34 std::map <int, XAOPlugin_IOperations*> XAOPlugin_OperationsCreator::_mapOfOperations;
36 XAOPlugin_OperationsCreator::XAOPlugin_OperationsCreator()
39 TFunction_DriverTable::Get()->AddDriver( XAOPlugin_Driver::GetID(),
40 new XAOPlugin_Driver() );
43 GEOMImpl_IECallBack::Register( "XAO", new XAOPlugin_IECallBack() );
46 XAOPlugin_OperationsCreator::~XAOPlugin_OperationsCreator()
50 GEOM_IOperations_i* XAOPlugin_OperationsCreator::Create( PortableServer::POA_ptr thePOA,
52 GEOM::GEOM_Gen_ptr theEngine,
53 ::GEOMImpl_Gen* theGenImpl )
55 Unexpect aCatch( SALOME_SalomeException );
56 MESSAGE( "XAOPlugin_OperationsCreator::Create" );
57 return new XAOPlugin_IOperations_i( thePOA, theEngine, get( theGenImpl, theStudyId ) );
60 XAOPlugin_IOperations* XAOPlugin_OperationsCreator::get( ::GEOMImpl_Gen* theGenImpl,
63 if (_mapOfOperations.find( theStudyId ) == _mapOfOperations.end() )
64 _mapOfOperations[theStudyId] = new XAOPlugin_IOperations( theGenImpl, theStudyId );
65 return _mapOfOperations[theStudyId];