blob: a4c985c2eac61fbf40c400cbe467e1b6638584f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
//
// $Id$
//
module Two_Objects_Test
{
typedef sequence<octet> Octet_Seq;
/// A very simple interface
interface First
{
oneway void oneway_method ();
};
interface Second
{
/// Return a simple string
Octet_Seq twoway_method ();
/// A method to shutdown the ORB
oneway void shutdown ();
};
/// Factory interface to create first and second objects
interface Object_Factory
{
First create_first ();
Second create_second ();
};
};
|