summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/examples/Hello/Receiver/Hello_Receiver.idl
blob: 82f637ba6bd357fffb09fbb05d4329eef977f620 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
 * @file
 * @author Marcel Smit (msmit@remedy.nl)
 */

#ifndef HELLO_RECEIVER_IDL
#define HELLO_RECEIVER_IDL

#include "Connector/Hello_Connector.idl"

module Hello
{
  component Receiver
  {
    port Hello::DDS_Listen info_out;
    provides CCM_DDS::ConnectorStatusListener info_out_connector_status;

    attribute string name;
    attribute unsigned long expected_samples;
  };
};

#endif