Salome HOME
Updated copyright comment
[samples/component.git] / src / SIGNALSComponent / SIGNALSComponent_Impl.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 SIGNALSComponent : example of component that devides two numbers
24 //  File   : SIGNALSComponent.hxx
25 //  Author : MARC TAJCHMAN, CEA
26 //  Module : SuperVisionTest
27 //  $Header$
28 //
29 #ifndef _SIGNALSCOMPONENT_IMPL_HXX_
30 #define _SIGNALSCOMPONENT_IMPL_HXX_
31
32 #include "SIGNALSComponent_defines.hxx"
33 #include <SALOMEconfig.h>
34 #include CORBA_SERVER_HEADER(SIGNALSComponent)
35 #include CORBA_SERVER_HEADER(SALOME_Component)
36 #include "SALOME_Component_i.hxx"
37
38 class SIGNALSCOMPONENTENGINE_EXPORT SIGNALSComponent_Impl :  public POA_SuperVisionTest::SIGNALSComponent ,
39                                                              public Engines_Component_i {
40 public:
41   SIGNALSComponent_Impl() ;
42   SIGNALSComponent_Impl( CORBA::ORB_ptr orb,
43                       PortableServer::POA_ptr poa,
44                       PortableServer::ObjectId * contId, 
45                       const char *instanceName,
46                       const char *interfaceName, bool withRegistry);
47
48   virtual ~SIGNALSComponent_Impl();
49
50   virtual char* getVersion();
51
52   CORBA::Long SIGSEGVfunc() ;
53   CORBA::Long SIGFPEfunc( CORBA::Long a , CORBA::Long b ) ;
54   void MethodToKill() ;
55   void WaitKill() ;
56
57 private:
58
59   long * NULLPTR ;
60
61 };
62
63 class SIGNALSCOMPONENTENGINE_EXPORT SIGNALSComponentEngine_SSL : public SIGNALSComponent_Impl
64 {
65 public:
66   SIGNALSComponentEngine_SSL( CORBA::ORB_ptr orb,
67                       PortableServer::POA_ptr poa,
68                       PortableServer::ObjectId * contId, 
69                       const char *instanceName,
70                       const char *interfaceName):SIGNALSComponent_Impl(orb,poa,contId,instanceName,interfaceName,false) { }
71 };
72
73 class SIGNALSCOMPONENTENGINE_EXPORT SIGNALSComponentEngine_No_SSL : public SIGNALSComponent_Impl
74 {
75 public:
76   SIGNALSComponentEngine_No_SSL( CORBA::ORB_ptr orb,
77                       PortableServer::POA_ptr poa,
78                       PortableServer::ObjectId * contId, 
79                       const char *instanceName,
80                       const char *interfaceName):SIGNALSComponent_Impl(orb,poa,contId,instanceName,interfaceName,true) { }
81 };
82
83 extern "C"
84   SIGNALSCOMPONENTENGINE_EXPORT
85   PortableServer::ObjectId * SIGNALSComponentEngine_factory
86                                    ( CORBA::ORB_ptr orb ,
87                                      PortableServer::POA_ptr poa , 
88                                      PortableServer::ObjectId * contId ,
89                                      const char *instanceName ,
90                                      const char *interfaceName ) ;
91
92 #endif