Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / DevGuideExamples / BiDirectionalGIOP / simple.idl
blobe6ef4fffa86469d07165166a8c077e1529ba0919
1 #include "callback.idl"
3 interface Simple
5 // Just call a method on the server,
6 long test_method(in boolean do_callback);
8 // send the callback object to the server
9 void callback_object(in Callback cb);
11 // A safe way to shutdown the server, it is a oneway function so we
12 // will never get a COMM_FAILURE error
13 oneway void shutdown();