Salome HOME
Merge from V6_main_20120808 08Aug12
[samples/component.git] / src / DataStreamComponent / DataStreamComponent_Impl.hxx
1 // Copyright (C) 2007-2012  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 void Setxy( CORBA::Long x , CORBA::Long y ) ;
50
51   virtual void Getxy( CORBA::Long & x , CORBA::Long & y ) ;
52
53   virtual void Add( CORBA::Long x , CORBA::Long y , CORBA::Long & z ) ;
54   virtual void Sub( CORBA::Long x , CORBA::Long y , CORBA::Long & z ) ;
55   virtual void Mul( CORBA::Long x , CORBA::Long y , CORBA::Long & z ) ;
56   virtual void Div( CORBA::Long x , CORBA::Long y , CORBA::Long & z ) ;
57
58   virtual DataStreamComponent::DataStream_ptr NewDataStream() ;
59
60 private:
61
62   long _x ;
63   long _y ;
64
65 };
66
67 extern "C"
68   PortableServer::ObjectId * DataStreamFactoryEngine_factory
69                                    ( CORBA::ORB_ptr orb ,
70                                      PortableServer::POA_ptr poa , 
71                                      PortableServer::ObjectId * contId ,
72                                      const char *instanceName ,
73                                      const char *interfaceName ) ;
74
75
76 class DataStream_Impl :  public POA_DataStreamComponent::DataStream ,
77                          public Engines_Component_i {
78 public:
79   DataStream_Impl() ;
80   DataStream_Impl( CORBA::ORB_ptr orb ,
81                    PortableServer::POA_ptr poa ,
82                    PortableServer::ObjectId * contId , 
83                    const char *instanceName ,
84                    const char *interfaceName , 
85                    const char * graphName ,
86                    const char * nodeName );
87
88   virtual ~DataStream_Impl();
89
90   virtual void StreamSetxy( CORBA::Long x , CORBA::Long y ) ;
91
92   virtual void StreamGetxy( CORBA::Long & x , CORBA::Long & y ) ;
93
94   virtual void StreamAdd( CORBA::Long x , CORBA::Long y , CORBA::Long & z ) ;
95   virtual void StreamSub( CORBA::Long x , CORBA::Long y , CORBA::Long & z ) ;
96   virtual void StreamMul( CORBA::Long x , CORBA::Long y , CORBA::Long & z ) ;
97   virtual void StreamDiv( CORBA::Long x , CORBA::Long y , CORBA::Long & z ) ;
98
99 private:
100
101   long _x ;
102   long _y ;
103
104 };
105
106 #endif