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 #2303 from jwillemsen/jwi-803
[ACE_TAO.git]
/
TAO
/
tests
/
Bug_1568_Regression
/
Test.idl
blob
176d95a0abbe62c23d1759220c9a671a29a73728
1
/**
2
* @file Test.idl
3
*
4
* @author Carlos O'Ryan <coryan@atdesk.com>
5
*/
6
module
Foo
7
{
8
module
Bar
9
{
10
interface
A
11
{
12
void
op1
();
13
void
op2
();
14
};
15
16
interface
B
17
{
18
void
op3
();
19
};
20
};
21
};
22
23
module
Baz
24
{
25
interface
C
:
Foo
::
Bar
::
A
,
Foo
::
Bar
::
B
26
{
27
void
op4
();
28
oneway
void
shutdown
();
29
};
30
};