summaryrefslogtreecommitdiff
path: root/TAO/CIAO/examples/Hello/Hello_Base/Hello_Base.idl
blob: 6df28c1433b3270c9925cde82f1ce944983fd994 (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
//$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 */