Salome HOME
Updated copyright comment
[samples/component.git] / src / SubComponent / SubComponent.hxx
1 // Copyright (C) 2007-2024  CEA, EDF, 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, or (at your option) any later version.
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 SubComponent : example of component that sunstracts one number from another
24 //  File   : SubComponentEngine.hxx
25 //  Author : MARC TAJCHMAN, CEA
26 //  Module : SuperVisionTest
27 //  $Header$
28 //
29 #ifndef _SUBCOMPONENTENGINE_HXX_
30 #define _SUBCOMPONENTENGINE_HXX_
31
32 #ifdef WIN32
33 # if defined SUBCOMPONENTENGINE_EXPORTS || defined SubComponentEngine_EXPORTS
34 #  define SUBCOMPONENTENGINE_EXPORT __declspec( dllexport )
35 # else
36 #  define SUBCOMPONENTENGINE_EXPORT __declspec( dllimport )
37 # endif
38 #else
39 # define SUBCOMPONENTENGINE_EXPORT
40 #endif
41
42 #include <SALOMEconfig.h>
43 #include CORBA_SERVER_HEADER(SubComponent)
44 #include CORBA_SERVER_HEADER(SALOME_Component)
45 #include "SALOME_Component_i.hxx"
46
47 class SUBCOMPONENTENGINE_EXPORT SubComponentEngine :  public POA_SuperVisionTest::SubComponent ,
48                                                       public Engines_Component_i {
49 public:
50   SubComponentEngine() ;
51   SubComponentEngine( CORBA::ORB_ptr orb,
52                       PortableServer::POA_ptr poa,
53                       PortableServer::ObjectId * contId, 
54                       const char *instanceName,
55                       const char *interfaceName, bool withRegistry);
56
57   virtual ~SubComponentEngine();
58
59   virtual char* getVersion();
60
61   void Sub( double x , double y , double & z ) ;
62
63 private:
64
65   int _nexec ;
66
67 };
68
69 class SUBCOMPONENTENGINE_EXPORT SubComponentEngine_SSL :  public SubComponentEngine
70 {
71 public:
72   SubComponentEngine_SSL(CORBA::ORB_ptr orb,
73                       PortableServer::POA_ptr poa,
74                       PortableServer::ObjectId * contId, 
75                       const char *instanceName,
76                       const char *interfaceName):SubComponentEngine(orb,poa,contId,instanceName,interfaceName,false) { }
77 };
78
79 class SUBCOMPONENTENGINE_EXPORT SubComponentEngine_No_SSL :  public SubComponentEngine
80 {
81 public:
82   SubComponentEngine_No_SSL(CORBA::ORB_ptr orb,
83                       PortableServer::POA_ptr poa,
84                       PortableServer::ObjectId * contId, 
85                       const char *instanceName,
86                       const char *interfaceName):SubComponentEngine(orb,poa,contId,instanceName,interfaceName,true) { }
87 };
88
89 extern "C"
90   SUBCOMPONENTENGINE_EXPORT
91   PortableServer::ObjectId * SubComponentEngine_factory
92                                    ( CORBA::ORB_ptr orb ,
93                                      PortableServer::POA_ptr poa , 
94                                      PortableServer::ObjectId * contId ,
95                                      const char *instanceName ,
96                                      const char *interfaceName ) ;
97
98 #endif