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