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 #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git]
/
TAO
/
tests
/
Bug_2124_Regression
/
Test.idl
blob
0d006d331a2e1d8710d962329a441379b6884727
1
/**
2
* @file Test.idl
3
*/
4
5
module
Test
6
{
7
typedef
string
<
10
>
MyString
;
8
typedef
MyString OtherString
;
9
10
interface
Foo
11
{
12
void
op1
(
in
MyString s
);
13
void
op2
(
in
OtherString s
);
14
};
15
};
16