2021-03-22 19:09:08 +03:00
|
|
|
// Copyright (C) 2007-2021 CEA/DEN, EDF R&D, OPEN CASCADE
|
2013-09-04 13:49:39 +00:00
|
|
|
//
|
|
|
|
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
2014-02-18 10:44:41 +04:00
|
|
|
// version 2.1 of the License, or (at your option) any later version.
|
2013-09-04 13:49:39 +00:00
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
//
|
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2014-02-18 10:44:41 +04:00
|
|
|
//
|
2013-09-04 13:49:39 +00:00
|
|
|
|
|
|
|
#ifndef _GEOM_ADVANCEDENGINE_OPERATIONSCREATOR_HXX_
|
|
|
|
#define _GEOM_ADVANCEDENGINE_OPERATIONSCREATOR_HXX_
|
|
|
|
|
2014-06-04 15:17:38 +04:00
|
|
|
#include "AdvancedEngine.hxx"
|
2013-09-04 13:49:39 +00:00
|
|
|
|
|
|
|
#include "GEOM_Gen_i.hh"
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
2014-06-04 15:17:38 +04:00
|
|
|
class AdvancedEngine_IOperations;
|
|
|
|
|
2013-09-04 13:49:39 +00:00
|
|
|
//=====================================================================
|
|
|
|
// Operations creator
|
|
|
|
//=====================================================================
|
|
|
|
class ADVANCEDENGINE_EXPORT AdvancedEngine_OperationsCreator : public GEOM_GenericOperationsCreator
|
|
|
|
{
|
2014-06-04 15:17:38 +04:00
|
|
|
public:
|
|
|
|
AdvancedEngine_OperationsCreator();
|
|
|
|
~AdvancedEngine_OperationsCreator();
|
|
|
|
|
|
|
|
GEOM_IOperations_i* Create (PortableServer::POA_ptr thePOA,
|
2017-06-13 12:57:14 +03:00
|
|
|
GEOM::GEOM_Gen_ptr theEngine,
|
|
|
|
::GEOMImpl_Gen* theGenImpl);
|
2014-06-04 15:17:38 +04:00
|
|
|
|
|
|
|
private:
|
2017-06-13 12:57:14 +03:00
|
|
|
static AdvancedEngine_IOperations* get(::GEOMImpl_Gen* theGenImpl);
|
2014-06-04 15:17:38 +04:00
|
|
|
private:
|
2017-06-13 12:57:14 +03:00
|
|
|
static AdvancedEngine_IOperations* _operation;
|
2013-09-04 13:49:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|