summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/tests/ResetTopic/WriteListen/Sender/WL_ResetTopic_Sender.idl
blob: a9f15fccaecbaea5cea48ad0634251f0599ca958 (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
29
30
31
// $Id$

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

#ifndef WL_RESETTOPIC_SENDER_IDL
#define WL_RESETTOPIC_SENDER_IDL

#include "Connector/WL_ResetTopic_Connector.idl"

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

  component Sender supports ChangeTopicInterface
  {
    port WL_ResetTopicTestConnector::DDS_Write  info_write;

    attribute unsigned short iterations;
    attribute unsigned short keys;
  };
};

#endif