summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/tests/ResetTopic/TooLong/Sender/TL_ResetTopic_Sender.idl
blob: 0e5fe02ca5d5dd8c9fc9163482df4808380a3eb5 (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
/**
 * @author Marcel Smit (msmit@remedy.nl)
 */

#ifndef TL_RESETTOPIC_SENDER_IDL
#define TL_RESETTOPIC_SENDER_IDL

#include "Connector/TL_ResetTopic_Connector.idl"

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

  component Sender supports ChangeTopicInterface
  {
    port TL_ResetTopicTestConnector::DDS_Write  info_write;
    port TL_ResetTopicTestConnector::DDS_Update info_update;

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

#endif