repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git]
/
TAO
/
performance-tests
/
POA
/
Implicit_Activation
/
Test.idl
blob
183355a8739d50664c8d9e68b06af3a06560d242
1
2
/// A simple module to avoid namespace pollution
3
module
Test
4
{
5
/// A very simple interface
6
interface
Simple
7
{
8
/// Destroy the object
9
void
destroy
();
10
};
11
12
/// A factory to create simple objects
13
interface
_Factory
14
{
15
/// Create the object
16
Simple create_simple_object
();
17
18
/// Shutdown the server
19
void
shutdown
();
20
};
21
22
typedef
sequence
<
Simple
>
Simple_Sequence
;
23
};