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 */