Salome HOME
Copyright update 2021
[samples/component.git] / src / AdditionComponent / Addition_Adder_Impl.hxx
1 // Copyright (C) 2007-2021  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, 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   : Adder_Impl.hxx
25 //  Author : Jean Rahuel, CEA
26 //  Module : SuperVisionTest
27 //  $Header:
28 //
29 #ifndef _ADDITION_ADDER_IMPL_HXX_
30 #define _ADDITION_ADDER_IMPL_HXX_
31
32 #include "AdditionComponent.hxx"
33 #include <iostream>
34 #include <SALOMEconfig.h>
35 #include CORBA_SERVER_HEADER(AdditionComponent)
36 #include CORBA_SERVER_HEADER(SALOME_Component)
37 #include "SALOME_Component_i.hxx"
38
39 class ADDITIONCOMPONENTENGINE_EXPORT Adder_Impl :  public POA_AdditionComponent::Adder ,
40                                                    public Engines_Component_i {
41   public:
42     Adder_Impl() ;
43     Adder_Impl( CORBA::ORB_ptr orb ,
44                 PortableServer::POA_ptr poa ,
45                 PortableServer::ObjectId * contId , 
46                 const char *instanceName ,
47                 const char *interfaceName , 
48                 const char * graphName ,
49                 const char * nodeName );
50
51     virtual ~Adder_Impl();
52
53     virtual char* getVersion();
54
55     virtual void destroy() ;
56
57     virtual CORBA::Double Add( CORBA::Double x , CORBA::Double y , CORBA::Double & z ) ;
58
59     virtual CORBA::Double AddWithoutSleep( CORBA::Double x , CORBA::Double y , CORBA::Double & z ) ;
60
61     virtual CORBA::Double AddAndCompare( CORBA::Double x , CORBA::Double y ,
62                                          AdditionComponent::Adder_ptr anOtherAdder ,
63                                          CORBA::Double & z ) ;
64
65     virtual void SetLastResult( CORBA::Double z ) ;
66
67     virtual void LastResult( CORBA::Double & z ) ;
68
69     virtual Engines::EngineComponent_ptr LccAdditionInterface( const char * aContainer ,
70                                                                const char * aComponentName ) ;
71
72   private:
73
74     double LastAddition ;
75
76 };
77
78 #endif