Salome HOME
Merge from V6_5_BR 05/06/2012
[modules/smesh.git] / src / Tools / padder / meshjob / impl / SPADDERPluginTester_i.hxx
1 // Copyright (C) 2011-2012  CEA/DEN, EDF R&D
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.
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 // Authors : Guillaume Boulant (EDF) - 01/03/2011
20
21 #ifndef _SPADDER_PLUGINTESTER_HXX_
22 #define _SPADDER_PLUGINTESTER_HXX_
23
24 // include the stubs generating from SPADDERPluginTest.idl
25 #include <SALOMEconfig.h>
26 #include CORBA_SERVER_HEADER(SPADDERPluginTest)
27 #include <SALOME_Component.hh>
28 #include "SALOME_Component_i.hxx"
29
30 class SPADDERPluginTester_i:
31   public virtual POA_SPADDERPluginTest::SPADDERPluginTester,
32   public Engines_Component_i
33 {
34 public:
35   SPADDERPluginTester_i(CORBA::ORB_ptr orb, PortableServer::POA_ptr poa,
36                         PortableServer::ObjectId * contId,
37                         const char *instanceName, const char *interfaceName);
38   virtual ~SPADDERPluginTester_i();
39   
40   void demo(CORBA::Double a,CORBA::Double b,CORBA::Double& c);
41   bool testkernel();
42   bool testsmesh(CORBA::Long studyId);
43
44 };
45
46 #endif
47