blob: 4a9705db9182f4696349050f5b2cf67eb5089636 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// $Id$
valuetype BaseNode;
// This TreeController is probably a silly idea.
// All I want from it is a valutype forward declared
// in one file and fully defined in another.
valuetype TreeController
{
public BaseNode root;
};
interface Test
{
// Returnes the reflected copy of its argument.
TreeController reflect (in TreeController tc);
// Shutdown the romote ORB
oneway void shutdown ();
};
|