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