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
/
tests
/
IDL_Inherited_Operation
/
InheritedOp.idl
blob
56d57c32e8c18363542106e83989a746d2950b08
1
#ifndef INHERITED_OP_IDL
2
#define INHERITED_OP_IDL
3
4
module
Outer
5
{
6
module
Inner
7
{
8
interface
Base
9
{
10
void
BaseOp
();
11
};
12
};
13
};
14
15
module
Outer
16
{
17
module
Inner
18
{
19
interface
Base
;
20
};
21
};
22
23
module
Outer
24
{
25
interface
Derived
:
Inner
::
Base
26
{
27
void
shutdown
();
28
};
29
};
30
31
#endif
/* INHERITED_OP_IDL */