summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/examples/IDL2CPPWrapper/Shapes/Base/I2C_Shapes_Base.idl
blob: dc8664aee34fa33433dca2b2483f50e7deb2da11 (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
// $Id$

/**
 * @file I2C_Shapes_Base.idl
 * @author Marcel Smit (msmit@remedy.nl)
 */

#ifndef I2C_SHAPES_BASE_IDL
#define I2C_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> ShapeTypeSeq;

#endif /* I2C_SHAPES_BASE_IDL */