blob: 87c70dfa13de5bf999a401dbe90cf51406aa52fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//
// $Id$
//
module ECT_Data
{
// Some simple data types to show how the Events can carry its
// payload in the octet sequence.
struct Point {
double x;
double y;
};
typedef sequence<Point> Vector;
struct Info {
string mobile_name;
double mobile_speed;
Vector trajectory;
};
};
|