Salome HOME
New component for instances of components
[samples/component.git] / src / AdditionComponent / AdditionComponent_Impl.hxx
1 //  SuperVisionTest AdditionComponent : example of component that adds two numbers
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
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 <iostream.h>
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 AdditionInterface_Impl :  public POA_AdditionComponent::AdditionInterface ,
39                            public Engines_Component_i {
40 public:
41   AdditionInterface_Impl() ;
42   AdditionInterface_Impl( CORBA::ORB_ptr orb,
43                      PortableServer::POA_ptr poa,
44                      PortableServer::ObjectId * contId, 
45                      const char *instanceName,
46                      const char *interfaceName);
47
48   virtual ~AdditionInterface_Impl();
49
50   virtual double Add( double x , double y , double & z ) ;
51   virtual double AddWithoutSleep( double x , double y , double & z ) ;
52
53   virtual void Setx( double x ) ;
54   virtual void Sety( double y ) ;
55   virtual double Addxy() ;
56   virtual double AddyTox( double y ) ;
57
58   virtual long Sigma( long n ) ;
59
60   virtual double LastResult() ;
61
62   virtual AdditionComponent::Adder_ptr Addition() ;
63
64   virtual bool AdditionObjRef1( AdditionComponent::Adder_out ) ;
65
66   virtual void AdditionObjRef2( bool & FuncValue , AdditionComponent::Adder_out ) ;
67
68   virtual bool AdditionObjRefs( const AdditionComponent::AdditionInterface_ptr AdditionInterface1 ,
69                                 const AdditionComponent::AdditionInterface_ptr Adder2 ,
70                                 const AdditionComponent::AdditionInterface_ptr Adder3 ,
71                                 AdditionComponent::AdditionInterface_out RetAdditionInterface1 ,
72                                 AdditionComponent::AdditionInterface_out RetAdder2 ,
73                                 AdditionComponent::AdditionInterface_out RetAdder3 ) ;
74
75 private:
76
77   double xx ;
78   double yy ;
79   double LastAddition ;
80
81 };
82
83 extern "C"
84   PortableServer::ObjectId * AdditionInterfaceEngine_factory
85                                    ( CORBA::ORB_ptr orb ,
86                                      PortableServer::POA_ptr poa , 
87                                      PortableServer::ObjectId * contId ,
88                                      const char *instanceName ,
89                                      const char *interfaceName ) ;
90
91 #endif