]> SALOME platform Git repositories - modules/kernel.git/blob - src/DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx
Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/kernel.git] / src / DSC / DSC_User / Datastream / Palm / palm_data_short_port_provides.hxx
1 //  Copyright (C) 2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
3 // 
4 //  This library is free software; you can redistribute it and/or 
5 //  modify it under the terms of the GNU Lesser General Public 
6 //  License as published by the Free Software Foundation; either 
7 //  version 2.1 of the License. 
8 // 
9 //  This library is distributed in the hope that it will be useful, 
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 //  Lesser General Public License for more details. 
13 // 
14 //  You should have received a copy of the GNU Lesser General Public 
15 //  License along with this library; if not, write to the Free Software 
16 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
17 // 
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 //
21 //
22 //  File   : palm_data_short_port_provides.hxx
23 //  Author : Eric Fayolle (EDF)
24 //  Module : KERNEL
25
26 #ifndef _PALM_DATA_SHORT_PORT_PROVIDES_HXX_
27 #define _PALM_DATA_SHORT_PORT_PROVIDES_HXX_
28
29 #include "Palm_Ports.hh"
30 #include "provides_port.hxx"
31 #include "GenericPort.hxx"
32 #include "PalmCouplingPolicy.hxx"
33
34 class palm_data_short_port_provides :
35   public virtual POA_Ports::Palm_Ports::Palm_Data_Short_Port,
36   public virtual provides_port,
37   public virtual GenericPort< atom_manipulation< CORBA::Short >, PalmCouplingPolicy >
38
39 {
40   typedef CORBA::Short                                 CorbaDataType;
41   typedef atom_manipulation < CorbaDataType >          DataManipulator;
42   typedef GenericPort< DataManipulator, PalmCouplingPolicy > Port;
43
44   public :
45     palm_data_short_port_provides() {}
46     virtual ~palm_data_short_port_provides() {}
47
48   void put(DataManipulator::CorbaInType data, CORBA::Long time, CORBA::Long tag) {
49     Port::put(data, time, tag);
50   }
51
52   virtual Ports::Port_ptr get_port_ref() {
53     return _this();
54   }
55 };
56
57 #endif