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

#ifndef DDS_SENDER_IDL
#define DDS_SENDER_IDL

#include "Connector/Hello_Connector.idl"

module Hello
{
  component Sender
  {
    port Hello::DDS_Write info_in;
    attribute unsigned long rate;
    attribute unsigned long iterations;
    attribute string message;
    attribute boolean log_time;
    provides CCM_DDS::ConnectorStatusListener connector_status;
  };
};

#endif