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