summaryrefslogtreecommitdiff
path: root/modules/CIAO/connectors/dds4ccm/examples/Hello/Sender/Hello_Sender.idl
blob: 7dbae7b2ce4047bfc34a60c0f3a680146ce1d72c (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
27
28
// $Id$

/**
 * @file
 * @author Marcel Smit <msmit@remedy.nl>
 *
 * by-hand idl3 translation of sender components.
 */

#ifndef DDS_SENDER_IDL
#define DDS_SENDER_IDL

#include "Connector/Hello_Connector.idl"

module Hello
{
  component Sender
  {
    port HelloConn::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