Salome HOME
848e7439458b36329706d60f062f46572e9b70b0
[modules/kernel.git] / src / TestContainer / SALOME_TestComponent_i.hxx
1 //=============================================================================
2 // File      : SALOME_TestComponent_i.hxx
3 // Created   : jeu jui 12 12:28:30 CEST 2001
4 // Author    : Paul RASCLE, EDF - MARC TAJCHMAN, CEA
5 // Project   : SALOME
6 // Copyright : EDF 2001
7 // $Header$
8 //=============================================================================
9
10 #ifndef _SALOME_TESTCOMPONENT_I_HXX_
11 #define _SALOME_TESTCOMPONENT_I_HXX_
12
13 #include <iostream.h>
14 #include <SALOMEconfig.h>
15 #include CORBA_SERVER_HEADER(SALOME_TestComponent)
16 #include "SALOME_Component_i.hxx"
17
18 class Engines_TestComponent_i: 
19   public POA_Engines::TestComponent,
20   public Engines_Component_i 
21 {
22 public:
23   Engines_TestComponent_i();
24   Engines_TestComponent_i(CORBA::ORB_ptr orb,
25                           PortableServer::POA_ptr poa,
26                           PortableServer::ObjectId * contId, 
27                           const char *instanceName, 
28                           const char *interfaceName);
29
30   virtual ~Engines_TestComponent_i();
31
32   char* Coucou(CORBA::Long L);
33   
34 private:
35
36 };
37
38 #endif