summaryrefslogtreecommitdiff
path: root/modules/CIAO/connectors/dds4ccm/examples/Shapes/Base/Shapes_Base.idl
blob: 750a8e327e5f6fbb9ea06c282b2fdd20520e82ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// $Id$

/**
 * @file Shapes_Base.idl
 * @author Marcel Smit <msmit@remedy.nl>
 */

#ifndef SHAPES_BASE_IDL
#define SHAPES_BASE_IDL

struct ShapeType {
  string color; //@key
  long x;
  long y;
  long shapesize;
};

struct Attributes {
  string shape; //@key
  string color; //@key
  float speed;
};

typedef sequence<ShapeType> ShapeType_Seq;

#endif