summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/tests/ResetTopic/WriteListen/Receiver/WL_ResetTopic_Receiver.idl
blob: 439c960b511d1ea85edf97a2e659e412fb16c360 (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>
 */

#ifndef RECEIVER_IDL
#define RECEIVER_IDL

#include "Connector/WL_ResetTopic_Connector.idl"

module WL_ResetTopic
{
  interface ChangeTopicInterface
  {
    void set_new_topic (in string topic_name);
  };

  component Receiver supports ChangeTopicInterface
  {
    port WL_ResetTopicTestConnector::DDS_Listen info_out_event;

    attribute unsigned short iterations;
  };
};

#endif