Salome HOME
Copyright update 2022
[samples/component.git] / src / TypesCheck / TypesCheck_Impl.hxx
index 987b7d6225ffbdff493a93f1a189a14b306a7769..295c6ec568220471a7efd90839d53f1f1b45a67d 100644 (file)
@@ -1,34 +1,44 @@
-//  SuperVisionTest SyrComponent : example of component performing some mathinatical operations
+// Copyright (C) 2007-2022  CEA/DEN, EDF R&D, OPEN CASCADE
+//
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
 //
-//  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
-// 
-//  This library is free software; you can redistribute it and/or 
-//  modify it under the terms of the GNU Lesser General Public 
-//  License as published by the Free Software Foundation; either 
-//  version 2.1 of the License. 
-// 
-//  This library is distributed in the hope that it will be useful, 
-//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
-//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
-//  Lesser General Public License for more details. 
-// 
-//  You should have received a copy of the GNU Lesser General Public 
-//  License along with this library; if not, write to the Free Software 
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
-// 
-//  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
 //
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
+
+//  SuperVisionTest SyrComponent : example of component performing some mathinatical operations
 //  File   : SyrComponent_Impl.hxx
 //  Author : Jean Rahuel
 //  Module : SuperVisionTest
 //  $Header:
-
+//
 #ifndef _TYPESCHECK_IMPL_HXX_
 #define _TYPESCHECK_IMPL_HXX_
 
+#ifdef WIN32
+# if defined TYPESCHECKENGINE_EXPORTS || defined TypesCheckEngine_EXPORTS
+#  define TYPESCHECKENGINE_EXPORT __declspec( dllexport )
+# else
+#  define TYPESCHECKENGINE_EXPORT __declspec( dllimport )
+# endif
+#else
+# define TYPESCHECKENGINE_EXPORT
+#endif
+
 #include <SALOMEconfig.h>
 #include CORBA_SERVER_HEADER(AddComponent)
 #include CORBA_SERVER_HEADER(TypesCheck)
@@ -37,8 +47,8 @@
 
 #include "AddComponent_Impl.hxx"
 
-class TypesCheck_Impl : public POA_SuperVisionTest::TypesCheck ,
-                        public Engines_Component_i {
+class TYPESCHECKENGINE_EXPORT TypesCheck_Impl : public POA_SuperVisionTest::TypesCheck ,
+                                                public Engines_Component_i {
   public:
     TypesCheck_Impl() ;
     TypesCheck_Impl( CORBA::ORB_ptr orb ,
@@ -50,25 +60,27 @@ class TypesCheck_Impl : public POA_SuperVisionTest::TypesCheck ,
 
     virtual ~TypesCheck_Impl();
 
+    virtual char* getVersion();
+
     virtual void StringCheck( const char * InString , _CORBA_String_out OutString ) ;
 
-    virtual void BoolCheck( const bool InBool , bool & OutBool ) ;
+    virtual void BoolCheck( CORBA::Boolean InBool , CORBA::Boolean & OutBool ) ;
 
-    virtual void CharCheck( const unsigned char InChar , unsigned char & OutChar ) ;
+    virtual void CharCheck( unsigned char InChar , unsigned char & OutChar ) ;
 
-    virtual void ShortCheck( const short InShort , short & OutShort ) ;
+    virtual void ShortCheck( short InShort , short & OutShort ) ;
 
-    virtual void IntCheck( const int InInt , int & OutInt ) ;
+    virtual void IntCheck( int InInt , int & OutInt ) ;
 
-    virtual void LongCheck( const long InLong , long & OutLong ) ;
+    virtual void LongCheck( CORBA::Long InLong , CORBA::Long & OutLong ) ;
 
-    virtual void FloatCheck( const float InFloat , float & OutFloat ) ;
+    virtual void FloatCheck( float InFloat , float & OutFloat ) ;
 
-    virtual void DoubleCheck( const double InDouble , double & OutDouble ) ;
+    virtual void DoubleCheck( double InDouble , double & OutDouble ) ;
 
-    virtual void ObjRefCheck( const SuperVisionTest::Adder_ptr InObjRef , SuperVisionTest::Adder_out OutObjRef ) ;
+    virtual void ObjRefCheck( SuperVisionTest::Adder_ptr InObjRef , SuperVisionTest::Adder_out OutObjRef ) ;
 
-    virtual void MiscTypes( const char * InString , const bool InBool , const unsigned char InChar , const short InShort , const long InLong , const float InFloat , const double InDouble , SuperVisionTest::Adder_ptr InObjRef , _CORBA_String_out OutString , bool & OutBool , unsigned char & OutChar , short & OutShort , long & OutLong , float & OutFloat , double & OutDouble , SuperVisionTest::Adder_out OutObjRef ) ;
+    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 ) ;
 
   private:
 
@@ -76,6 +88,7 @@ class TypesCheck_Impl : public POA_SuperVisionTest::TypesCheck ,
 };
 
 extern "C"
+  TYPESCHECKENGINE_EXPORT
   PortableServer::ObjectId * TypesCheckEngine_factory ( CORBA::ORB_ptr orb ,
                                                         PortableServer::POA_ptr poa , 
                                                         PortableServer::ObjectId * contId ,