summaryrefslogtreecommitdiff
path: root/CIAO/examples/Hello_Event/Sender/Sender.idl
blob: 22ec7c31a234871699d7df1c81408e5acd493265 (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
#ifndef SENDER_IDL
#define SENDER_IDL


#include "../Hello_Base/Hello_Base.idl"
#include "tao/StringSeq.pidl"

module Hello
{
  /* This is a Sender specific interface which will be used to get the
   * process start.
   */

  interface trigger
  {
    void start ();
  };

  component Sender supports trigger
  {
    provides ReadMessage push_message;
    publishes TimeOut click_out;

    attribute string local_message;
  };
};
#endif /*SENDER_IDL*/