Salome HOME
Merge from BR_V5_DEV 17Feb09
[samples/component.git] / src / AddComponent / AddComponent_Impl.hxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, 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.
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 //  SuperVisionTest AddComponent : example of component that adds two numbers
23 //  File   : AddComponent_Impl.hxx
24 //  Author : Jean Rahuel, CEA
25 //  Module : SuperVisionTest
26 //  $Header:
27 //
28 #ifndef _ADDINTERFACE_IMPL_HXX_
29 #define _ADDINTERFACE_IMPL_HXX_
30
31 //#include <iostream.h>
32 #include <SALOMEconfig.h>
33 #include CORBA_SERVER_HEADER(AddComponent)
34 #include CORBA_SERVER_HEADER(SALOME_Component)
35 #include "SALOME_Component_i.hxx"
36
37 class AddComponent_Impl :  public POA_SuperVisionTest::AddComponent ,
38                            public Engines_Component_i {
39 public:
40   AddComponent_Impl() ;
41   AddComponent_Impl( CORBA::ORB_ptr orb,
42                      PortableServer::POA_ptr poa,
43                      PortableServer::ObjectId * contId, 
44                      const char *instanceName,
45                      const char *interfaceName);
46
47   virtual ~AddComponent_Impl();
48
49   virtual CORBA::Double Add( CORBA::Double x , CORBA::Double y , CORBA::Double & z ) ;
50   virtual CORBA::Double AddWithoutSleep( CORBA::Double x , CORBA::Double y , CORBA::Double & z ) ;
51
52   virtual void Setx( CORBA::Double x ) ;
53   virtual void Sety( CORBA::Double y ) ;
54   virtual CORBA::Double Addxy() ;
55   virtual CORBA::Double AddyTox( CORBA::Double y ) ;
56
57   virtual CORBA::Long Sigma( CORBA::Long n ) ;
58
59   virtual CORBA::Double LastResult() ;
60
61   virtual SuperVisionTest::Adder_ptr Addition() ;
62
63   virtual CORBA::Boolean AdditionObjRef1( SuperVisionTest::Adder_out ) ;
64
65   virtual void AdditionObjRef2( CORBA::Boolean & FuncValue , SuperVisionTest::Adder_out ) ;
66
67   virtual CORBA::Boolean AdditionObjRefs( SuperVisionTest::AddComponent_ptr AddComponent1 ,
68                                           SuperVisionTest::AddComponent_ptr Adder2 ,
69                                           SuperVisionTest::AddComponent_ptr Adder3 ,
70                                           SuperVisionTest::AddComponent_out RetAddComponent1 ,
71                                           SuperVisionTest::AddComponent_out RetAdder2 ,
72                                           SuperVisionTest::AddComponent_out RetAdder3 ) ;
73
74 private:
75
76   double xx ;
77   double yy ;
78   double LastAddition ;
79
80 };
81
82 extern "C"
83   PortableServer::ObjectId * AddComponentEngine_factory
84                                    ( CORBA::ORB_ptr orb ,
85                                      PortableServer::POA_ptr poa , 
86                                      PortableServer::ObjectId * contId ,
87                                      const char *instanceName ,
88                                      const char *interfaceName ) ;
89
90 #endif