Salome HOME
Integration of 0019971: A patch for cmake compilation.
[modules/kernel.git] / idl / Palm_Ports.idl
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 //  File   : SALOME_Ports.idl
21 //  Author : AndrĂ© RIBES, EDF
22
23 #ifndef _PALM_PORTS_IDL_
24 #define _PALM_PORTS_IDL_
25
26 #include "SALOME_Ports.idl"
27
28 /*! \file
29   This file contains IDL palm ports declations.
30 */
31
32 module Ports {
33
34   module Palm_Ports {
35
36     /*! \brief Interface of a short for palm.
37      */
38     interface Palm_Data_Short_Port : Ports::Data_Port {
39
40       /*!
41         This operation permits to transmit a short.
42
43         \param data the short transmitted.
44         \param time time associated to the short.
45         \param tag  tag associated to the short.
46        */
47       void put (in short data, in long time, in long tag);
48     };
49
50     /*!
51       It is a sequence of short for palm ports.
52      */
53     typedef sequence<short> seq_short;
54
55     /*! \brief Interface of a sequence of short port.
56      */
57     interface Palm_Data_Seq_Short_Port : Ports::Data_Port {
58       /*!
59         This operation permits to transmit a sequence of short.
60
61         \param data the sequence transmitted.
62         \param time time associated to the data.
63         \param tag  tag associated to the data.
64        */
65       void put (in seq_short data, in long time, in long tag);
66     };
67
68   };
69 };
70
71 #endif