Salome HOME
729d15fee473a645c5943f98829ae546dea3d8bd
[samples/component.git] / src / UndefinedSymbolComponent / UndefinedSymbolComponent.hxx
1 //  Copyright (C) 2007-2008  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 //  SuperVisionTest UndefinedSymbolComponent : example of component that devides two numbers
23 //  File   : UndefinedSymbolComponentEngine.hxx
24 //  Author : MARC TAJCHMAN, CEA
25 //  Module : SuperVisionTest
26 //  $Header$
27 //
28 #ifndef _UNDEFINEDSYMBOLCOMPONENTENGINE_HXX_
29 #define _UNDEFINEDSYMBOLCOMPONENTENGINE_HXX_
30
31 //#include <iostream.h>
32 #include <SALOMEconfig.h>
33 #include CORBA_SERVER_HEADER(UndefinedSymbolComponent)
34 #include CORBA_SERVER_HEADER(SALOME_Component)
35 #include "SALOME_Component_i.hxx"
36
37 class UndefinedSymbolComponentEngine :  public POA_SuperVisionTest::UndefinedSymbolComponent ,
38                             public Engines_Component_i {
39 public:
40   UndefinedSymbolComponentEngine() ;
41   UndefinedSymbolComponentEngine( CORBA::ORB_ptr orb,
42                       PortableServer::POA_ptr poa,
43                       PortableServer::ObjectId * contId, 
44                       const char *instanceName,
45                       const char *interfaceName);
46
47   virtual ~UndefinedSymbolComponentEngine();
48
49   CORBA::Long UndefinedSymbol() ;
50
51 private:
52
53   int _nexec ;
54
55 };
56
57 extern "C"
58   PortableServer::ObjectId * UndefinedSymbolComponentEngine_factory
59                                    ( CORBA::ORB_ptr orb ,
60                                      PortableServer::POA_ptr poa , 
61                                      PortableServer::ObjectId * contId ,
62                                      const char *instanceName ,
63                                      const char *interfaceName ) ;
64
65 #endif