summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/examples/Shapes/Sender/Shapes_Sender.idl
blob: d0ea6a9c8a13024eccc9b77cd81e25c517d4c7d2 (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
/**
 * @author Marcel Smit (msmit@remedy.nl)
 */

#ifndef DDS_SHAPES_SENDER_IDL
#define DDS_SHAPES_SENDER_IDL

#include "Connector/Shapes_Connector.idl"

module Shapes
{
  component Sender
  {
    port Shapes::DDS_Write info_write;
    attribute unsigned long rate;
    attribute unsigned short max_x;
    attribute unsigned short max_y;
    attribute unsigned short max_size;
    attribute boolean resize_shape;
    attribute string color;
  };
};

#endif