summaryrefslogtreecommitdiff
path: root/TAO/CIAO/examples/Hello/Hello_Base/Hello_Base.idl
blob: f7baa1f6a879df635077f7c72cc33ae0959ea570 (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 <ciao/Components.idl>

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

  eventtype timeout
  {
  };

};

#endif /* HELLO_IDL */