blob: cbb8054de285746bca453802711c466806981ba2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* $Id$
*/
/// A simple interface to test the ORB
interface Simple_Server
{
/// This method is a noop, and it is used just to exercise the
/// critical path
void test_method ();
/// Shutdown the server
/**
* Provide a simple way to cleanup the test when it finishes
*/
oneway void shutdown ();
};
|