summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/examples/Hello/Receiver/Hello_Receiver.idl
blob: 02a09f01156f0ff6f0a332dfbde15cf2a7d16dcf (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
// $Id$

/**
 * @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 CCM_DDS::Hello::DDS_Listen info_out;
    provides CCM_DDS::ConnectorStatusListener info_out_connector_status;

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

#endif