Salome HOME
Calcium and Palm ok
[modules/kernel.git] / idl / Palm_Ports.idl
1 // André Ribes - EDF R&D 2006
2
3 #ifndef _PALM_PORTS_IDL_
4 #define _PALM_PORTS_IDL_
5
6 #include "SALOME_Ports.idl"
7
8 module Ports {
9
10   module Palm_Ports {
11
12     // Tous les ports Palm ont
13     // une méthode put avec 3 arguments 
14     // dont les deux derniers sont :
15     // in long time, in long tag
16
17     interface Palm_Data_Short_Port : Ports::Data_Port {
18       void put (in short data, in long time, in long tag);
19     };
20
21     typedef sequence<short> seq_short;
22     interface Palm_Data_Seq_Short_Port : Ports::Data_Port {
23       void put (in seq_short data, in long time, in long tag);
24     };
25
26   };
27 };
28
29 #endif