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

#ifndef UL_RESETTOPIC_SENDER_IDL
#define UL_RESETTOPIC_SENDER_IDL

#include "Connector/UL_ResetTopic_Connector.idl"

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

  component Sender supports ChangeTopicInterface
  {
    port UL_ResetTopicTestConnector::DDS_Update info_update;

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

#endif