blob: 9f58cc8869f6d09e8fdaa1d3b16e5c34e201173e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// $Id$
interface simple
{
string op1 (in string name,
in any inany,
out any outany);
wstring op2 (in wstring s1);
/// A method to shutdown the ORB
/**
* This method is used to simplify the test shutdown process
*/
oneway void shutdown ();
};
|