blob: f870179f56df158cf27c42199c2b30882d08a8ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// $Id$
interface Test
{
// = TITLE
// A simple test interface
//
// = DESCRIPTION
// This test demostrates the smart proxy feature in TAO
// Note that though the interface has two methods just one
// of them can be "smartified" if necessary, the other one
// simply performs the same way as would the default proxy.
exception Oops
{
string reason;
};
short method (in short boo) raises (Oops);
oneway void shutdown ();
};
|