Salome HOME
8c2d7195b6ccb1c4b17e10879e9a0445a3c19b82
[samples/component.git] / src / SubComponent / SubComponent.hxx
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  SuperVisionTest SubComponent : example of component that sunstracts one number from another
24 //  File   : SubComponentEngine.hxx
25 //  Author : MARC TAJCHMAN, CEA
26 //  Module : SuperVisionTest
27 //  $Header$
28 //
29 #ifndef _SUBCOMPONENTENGINE_HXX_
30 #define _SUBCOMPONENTENGINE_HXX_
31
32 //#include <iostream.h>
33 #include <SALOMEconfig.h>
34 #include CORBA_SERVER_HEADER(SubComponent)
35 #include CORBA_SERVER_HEADER(SALOME_Component)
36 #include "SALOME_Component_i.hxx"
37
38 class SubComponentEngine :  public POA_SuperVisionTest::SubComponent ,
39                             public Engines_Component_i {
40 public:
41   SubComponentEngine() ;
42   SubComponentEngine( CORBA::ORB_ptr orb,
43                       PortableServer::POA_ptr poa,
44                       PortableServer::ObjectId * contId, 
45                       const char *instanceName,
46                       const char *interfaceName);
47
48   virtual ~SubComponentEngine();
49
50   void Sub( double x , double y , double & z ) ;
51
52 private:
53
54   int _nexec ;
55
56 };
57
58 extern "C"
59   PortableServer::ObjectId * SubComponentEngine_factory
60                                    ( CORBA::ORB_ptr orb ,
61                                      PortableServer::POA_ptr poa , 
62                                      PortableServer::ObjectId * contId ,
63                                      const char *instanceName ,
64                                      const char *interfaceName ) ;
65
66 #endif