Salome HOME
Merge from BR_V5_DEV 17Feb09
[samples/component.git] / src / DataStreamComponent / DataStreamComponent_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 DataStreamComponent : example of component
23 //  File   : DataStreamComponent_Impl.hxx
24 //  Author : Jean Rahuel
25 //  Module : SuperVisionTest
26 //  $Header:
27 //
28 #ifndef _DATASTREAMINTERFACE_IMPL_HXX_
29 #define _DATASTREAMINTERFACE_IMPL_HXX_
30
31 #include <SALOMEconfig.h>
32 #include CORBA_SERVER_HEADER(DataStreamComponent)
33 #include CORBA_SERVER_HEADER(SALOME_Component)
34 #include "SALOME_Component_i.hxx"
35
36 class DataStreamFactory_Impl :  public POA_DataStreamComponent::DataStreamFactory ,
37                                 public Engines_Component_i {
38 public:
39   DataStreamFactory_Impl() ;
40   DataStreamFactory_Impl( CORBA::ORB_ptr orb,
41                           PortableServer::POA_ptr poa,
42                           PortableServer::ObjectId * contId, 
43                           const char *instanceName,
44                           const char *interfaceName);
45
46   virtual ~DataStreamFactory_Impl();
47
48   virtual void Setxy( CORBA::Long x , CORBA::Long y ) ;
49
50   virtual void Getxy( CORBA::Long & x , CORBA::Long & y ) ;
51
52   virtual void Add( CORBA::Long x , CORBA::Long y , CORBA::Long & z ) ;
53   virtual void Sub( CORBA::Long x , CORBA::Long y , CORBA::Long & z ) ;
54   virtual void Mul( CORBA::Long x , CORBA::Long y , CORBA::Long & z ) ;
55   virtual void Div( CORBA::Long x , CORBA::Long y , CORBA::Long & z ) ;
56
57   virtual DataStreamComponent::DataStream_ptr NewDataStream() ;
58
59 private:
60
61   long _x ;
62   long _y ;
63
64 };
65
66 extern "C"
67   PortableServer::ObjectId * DataStreamFactoryEngine_factory
68                                    ( CORBA::ORB_ptr orb ,
69                                      PortableServer::POA_ptr poa , 
70                                      PortableServer::ObjectId * contId ,
71                                      const char *instanceName ,
72                                      const char *interfaceName ) ;
73
74
75 class DataStream_Impl :  public POA_DataStreamComponent::DataStream ,
76                          public Engines_Component_i {
77 public:
78   DataStream_Impl() ;
79   DataStream_Impl( CORBA::ORB_ptr orb ,
80                    PortableServer::POA_ptr poa ,
81                    PortableServer::ObjectId * contId , 
82                    const char *instanceName ,
83                    const char *interfaceName , 
84                    const char * graphName ,
85                    const char * nodeName );
86
87   virtual ~DataStream_Impl();
88
89   virtual void StreamSetxy( CORBA::Long x , CORBA::Long y ) ;
90
91   virtual void StreamGetxy( CORBA::Long & x , CORBA::Long & y ) ;
92
93   virtual void StreamAdd( CORBA::Long x , CORBA::Long y , CORBA::Long & z ) ;
94   virtual void StreamSub( CORBA::Long x , CORBA::Long y , CORBA::Long & z ) ;
95   virtual void StreamMul( CORBA::Long x , CORBA::Long y , CORBA::Long & z ) ;
96   virtual void StreamDiv( CORBA::Long x , CORBA::Long y , CORBA::Long & z ) ;
97
98 private:
99
100   long _x ;
101   long _y ;
102
103 };
104
105 #endif