Salome HOME
Updated copyright comment
[samples/component.git] / src / AdditionComponent / AdditionComponent_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 AdditionComponent : example of component that adds two numbers
24 //  File   : AdditionComponent_Impl.hxx
25 //  Author : Jean Rahuel, CEA
26 //  Module : SuperVisionTest
27 //  $Header:
28 //
29 #ifndef _ADDITIONINTERFACE_IMPL_HXX_
30 #define _ADDITIONINTERFACE_IMPL_HXX_
31
32 #include "AdditionComponent.hxx"
33 #include <SALOMEconfig.h>
34 #include CORBA_SERVER_HEADER(AdditionComponent)
35 #include CORBA_SERVER_HEADER(SALOME_Component)
36 #include "SALOME_Component_i.hxx"
37
38 class Adder_Impl;
39
40 class ADDITIONCOMPONENTENGINE_EXPORT AdditionInterface_Impl :  public POA_AdditionComponent::AdditionInterface ,
41                                                                public Engines_Component_i {
42 protected:
43   AdditionInterface_Impl() ;
44   AdditionInterface_Impl( CORBA::ORB_ptr orb,
45                      PortableServer::POA_ptr poa,
46                      PortableServer::ObjectId * contId, 
47                      const char *instanceName,
48                      const char *interfaceName, bool withRegistry);
49 public:
50   virtual ~AdditionInterface_Impl();
51
52   virtual char* getVersion();
53
54   virtual CORBA::Double Add( CORBA::Double x , CORBA::Double y , CORBA::Double & z ) ;
55   virtual CORBA::Double AddWithoutSleep( CORBA::Double x , CORBA::Double y , CORBA::Double & z ) ;
56
57   virtual void Setx( CORBA::Double x ) ;
58   virtual void Sety( CORBA::Double y ) ;
59   virtual CORBA::Double Addxy() ;
60   virtual CORBA::Double AddyTox( CORBA::Double y ) ;
61
62   virtual CORBA::Long Sigma( CORBA::Long n ) ;
63
64   virtual CORBA::Double LastResult() ;
65
66   virtual AdditionComponent::Adder_ptr Addition() ;
67
68   virtual bool AdditionObjRef1( AdditionComponent::Adder_out ) ;
69
70   virtual void AdditionObjRef2( CORBA::Boolean & FuncValue , AdditionComponent::Adder_out ) ;
71
72   virtual CORBA::Boolean AdditionObjRefs( AdditionComponent::AdditionInterface_ptr AdditionInterface1 ,
73                                           AdditionComponent::AdditionInterface_ptr Adder2 ,
74                                           AdditionComponent::AdditionInterface_ptr Adder3 ,
75                                           AdditionComponent::AdditionInterface_out RetAdditionInterface1 ,
76                                           AdditionComponent::AdditionInterface_out RetAdder2 ,
77                                           AdditionComponent::AdditionInterface_out RetAdder3 ) ;
78 private:
79
80   Adder_Impl *BuildNewAdderImplObj();
81
82 private:
83
84   double xx ;
85   double yy ;
86   double LastAddition ;
87
88 };
89
90 class ADDITIONCOMPONENTENGINE_EXPORT AdditionInterface_Impl_SSL :  public AdditionInterface_Impl
91 {
92 public:
93   AdditionInterface_Impl_SSL( CORBA::ORB_ptr orb,
94                      PortableServer::POA_ptr poa,
95                      PortableServer::ObjectId * contId, 
96                      const char *instanceName,
97                      const char *interfaceName):AdditionInterface_Impl(orb,poa,contId,instanceName,interfaceName,false) { }
98 };
99
100 class ADDITIONCOMPONENTENGINE_EXPORT AdditionInterface_Impl_No_SSL :  public AdditionInterface_Impl
101 {
102 public:
103   AdditionInterface_Impl_No_SSL( CORBA::ORB_ptr orb,
104                      PortableServer::POA_ptr poa,
105                      PortableServer::ObjectId * contId, 
106                      const char *instanceName,
107                      const char *interfaceName):AdditionInterface_Impl(orb,poa,contId,instanceName,interfaceName,true) { }
108 };
109
110 extern "C"
111   ADDITIONCOMPONENTENGINE_EXPORT
112   PortableServer::ObjectId * AdditionInterfaceEngine_factory
113                                    ( CORBA::ORB_ptr orb ,
114                                      PortableServer::POA_ptr poa , 
115                                      PortableServer::ObjectId * contId ,
116                                      const char *instanceName ,
117                                      const char *interfaceName ) ;
118
119 #endif