summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/examples/Shapes/Receiver/Shapes_Receiver.idl
blob: 3f46da47dace01299c882ae546af046cfc8c2360 (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
 * @author Marcel Smit <msmit@remedy.nl>
 */

#ifndef RECEIVER_IDL
#define RECEIVER_IDL

#include "Connector/Shapes_Connector.idl"

module Shapes
{
  component Receiver
  {
    port CCM_DDS::ShapeType::DDS_Listen info_out;
    port CCM_DDS::ShapeType::DDS_Get info_get;
    attribute unsigned long rate;
    attribute boolean get_data; //if true, get_one and get_all are invoked
    attribute boolean read_data;//if true, read_one and read_all are invoked.
    attribute boolean raw_listen; //if true, raw listen port is enabled.
  };
};

#endif