summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/EC_Custom_Marshal/data.idl
blob: 871ff05f9df9d5af9300e912f484dfca7d7dc10f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// $Id$
//

module ECM_IDLData
{
  // 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;
  };
};