summaryrefslogtreecommitdiff
path: root/TAO/CIAO/examples/Hello/Hello_Base/Hello_Base.idl
blob: 0ac19ea22761c74e7b04967495e0c629f6bd1ad8 (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
//$Id$:
/**
 *  @file Hello_Base.idl
 *  Definition of common interfaces used by the Hello example
 *
 *  @auther Tao Lu <lu@dre.vanderbilt.edu>
 */

#ifndef HELLO_IDL
#define HELLO_IDL

#include <Components.idl>

module Hello
{
  interface message
  {
    string get_message();
  };

  eventtype timeout
  {
  };

};

#endif /* HELLO_IDL */