Salome HOME
Merge from V6_main 13/12/2012
[samples/component.git] / src / TypesCheck / TypesCheck_Impl.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 SyrComponent : example of component performing some mathinatical operations
24 //  File   : SyrComponent_Impl.hxx
25 //  Author : Jean Rahuel
26 //  Module : SuperVisionTest
27 //  $Header:
28 //
29 #ifndef _TYPESCHECK_IMPL_HXX_
30 #define _TYPESCHECK_IMPL_HXX_
31
32 #include <SALOMEconfig.h>
33 #include CORBA_SERVER_HEADER(AddComponent)
34 #include CORBA_SERVER_HEADER(TypesCheck)
35 #include CORBA_SERVER_HEADER(SALOME_Component)
36 #include "SALOME_Component_i.hxx"
37
38 #include "AddComponent_Impl.hxx"
39
40 class TypesCheck_Impl : public POA_SuperVisionTest::TypesCheck ,
41                         public Engines_Component_i {
42   public:
43     TypesCheck_Impl() ;
44     TypesCheck_Impl( CORBA::ORB_ptr orb ,
45                      PortableServer::POA_ptr poa ,
46                      PortableServer::ObjectId * contId , 
47                      const char *instanceName ,
48                      const char *interfaceName ,
49                      const bool kactivate = true ) ;
50
51     virtual ~TypesCheck_Impl();
52
53     virtual char* getVersion();
54
55     virtual void StringCheck( const char * InString , _CORBA_String_out OutString ) ;
56
57     virtual void BoolCheck( CORBA::Boolean InBool , CORBA::Boolean & OutBool ) ;
58
59     virtual void CharCheck( unsigned char InChar , unsigned char & OutChar ) ;
60
61     virtual void ShortCheck( short InShort , short & OutShort ) ;
62
63     virtual void IntCheck( int InInt , int & OutInt ) ;
64
65     virtual void LongCheck( CORBA::Long InLong , CORBA::Long & OutLong ) ;
66
67     virtual void FloatCheck( float InFloat , float & OutFloat ) ;
68
69     virtual void DoubleCheck( double InDouble , double & OutDouble ) ;
70
71     virtual void ObjRefCheck( SuperVisionTest::Adder_ptr InObjRef , SuperVisionTest::Adder_out OutObjRef ) ;
72
73     virtual void MiscTypes( const char * InString , CORBA::Boolean InBool , unsigned char InChar , short InShort , CORBA::Long InLong , float InFloat , double InDouble , SuperVisionTest::Adder_ptr InObjRef , _CORBA_String_out OutString , CORBA::Boolean & OutBool , unsigned char & OutChar , short & OutShort , CORBA::Long & OutLong , float & OutFloat , double & OutDouble , SuperVisionTest::Adder_out OutObjRef ) ;
74
75   private:
76
77
78 };
79
80 extern "C"
81   PortableServer::ObjectId * TypesCheckEngine_factory ( CORBA::ORB_ptr orb ,
82                                                         PortableServer::POA_ptr poa , 
83                                                         PortableServer::ObjectId * contId ,
84                                                         const char *instanceName ,
85                                                         const char *interfaceName ) ;
86
87 #endif