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
Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git]
/
TAO
/
tests
/
Bug_1670_Regression
/
Test.idl
blob
a908f7651abdeb06abc5e3e00d86ce6ae5b6bb46
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
long
op1
();
13
long
op2
();
14
};
15
16
interface
B
17
{
18
long
op3
();
19
};
20
};
21
};
22
23
module
Baz
24
{
25
interface
C
:
Foo
::
Bar
::
A
,
Foo
::
Bar
::
B
26
{
27
long
op4
();
28
oneway
void
shutdown
();
29
};
30
};