Salome HOME
Updated copyright comment
[samples/component.git] / src / TypesCheck / TypesCheck_Impl.hxx
index 935325a7731fd35f487135b854e040fe3d4c41c9..f3412e7fd94fce4c5a55d304bac8e715f23003f0 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2024  CEA, EDF, OPEN CASCADE
 //
 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
@@ -6,7 +6,7 @@
 // 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.
+// version 2.1 of the License, or (at your option) any later version.
 //
 // This library is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -56,7 +56,7 @@ class TYPESCHECKENGINE_EXPORT TypesCheck_Impl : public POA_SuperVisionTest::Type
                     PortableServer::ObjectId * contId , 
                     const char *instanceName ,
                      const char *interfaceName ,
-                     const bool kactivate = true ) ;
+                     const bool kactivate, bool withRegistry ) ;
 
     virtual ~TypesCheck_Impl();
 
@@ -87,6 +87,26 @@ class TYPESCHECKENGINE_EXPORT TypesCheck_Impl : public POA_SuperVisionTest::Type
 
 };
 
+class TYPESCHECKENGINE_EXPORT TypesCheck_Impl_SSL : public TypesCheck_Impl {
+  public:
+    TypesCheck_Impl_SSL( CORBA::ORB_ptr orb ,
+                    PortableServer::POA_ptr poa ,
+                    PortableServer::ObjectId * contId , 
+                    const char *instanceName ,
+                     const char *interfaceName ,
+                     const bool kactivate = true):TypesCheck_Impl(orb,poa,contId,instanceName,interfaceName,kactivate,false) { }
+};
+
+class TYPESCHECKENGINE_EXPORT TypesCheck_Impl_No_SSL : public TypesCheck_Impl {
+  public:
+    TypesCheck_Impl_No_SSL( CORBA::ORB_ptr orb ,
+                    PortableServer::POA_ptr poa ,
+                    PortableServer::ObjectId * contId , 
+                    const char *instanceName ,
+                     const char *interfaceName ,
+                     const bool kactivate = true):TypesCheck_Impl(orb,poa,contId,instanceName,interfaceName,kactivate,true) { }
+};
+
 extern "C"
   TYPESCHECKENGINE_EXPORT
   PortableServer::ObjectId * TypesCheckEngine_factory ( CORBA::ORB_ptr orb ,