Salome HOME
6a0a89eefa8678cb138b37abfd0b47276ec24532
[plugins/canrecplugin.git] / src / CANRECPLUGINEngine / CANRECPluginEngine_IOperations_i.hh
1 // Copyright (C) 2014-2016  OPEN CASCADE
2 //
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.
7 //
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.
12 //
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
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #if !defined(__CANRECPLUGINENGINE_IOPERATIONS_HH)
21 #define __CANRECPLUGINENGINE_IOPERATIONS_HH
22
23 #include <SALOMEconfig.h>
24 #include CORBA_CLIENT_HEADER(GEOM_Gen)
25 #include CORBA_SERVER_HEADER(CANRECPlugin)
26
27 #include "CANRECPluginEngine.hxx"
28
29 #include <GEOM_IOperations_i.hh>
30
31 class CANRECPluginImpl_IOperations;
32
33 class CANRECPLUGINENGINE_EXPORT CANRECPluginEngine_IOperations_i :
34       public virtual POA_CANRECPlugin::ICanRecOperations,
35       public virtual GEOM_IOperations_i
36 {
37  public:
38   CANRECPluginEngine_IOperations_i( PortableServer::POA_ptr thePOA, 
39                                     GEOM::GEOM_Gen_ptr theEngine,
40                                     CANRECPluginImpl_IOperations* theImpl );
41   ~CANRECPluginEngine_IOperations_i();
42
43   GEOM::GEOM_Object_ptr MakeCanonicalRecognition ( GEOM::GEOM_Object_ptr theObject,
44                                                    CORBA::Boolean theMergeSurf,
45                                                    CORBA::Boolean theMergeCurves,
46                                                    CORBA::Double theTolerance,
47                                                    CANRECPlugin::ListOfLong_out theStat );
48
49   CORBA::Long GetNbCanonicalFaces(GEOM::GEOM_Object_ptr theObject);
50
51   CANRECPluginImpl_IOperations* GetOperations();
52 };
53
54 #endif // __CANRECPLUGINENGINE_IOPERATIONS_HH