blob: f925e18a804f1a2ec1394c87071cad4e1a95248a (
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
|
//
// $Id$
//
/// A simple module to avoid namespace pollution
module Test
{
/// A very simple interface
interface Simple
{
/// Destroy the object
void destroy ();
};
/// A factory to create simple objects
interface _Factory
{
/// Create the object
Simple create_simple_object ();
/// Shutdown the server
void shutdown ();
};
typedef sequence<Simple> Simple_Sequence;
};
|