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 #2309 from mitza-oci/warnings
[ACE_TAO.git]
/
TAO
/
tests
/
Bug_3766_Regression
/
Test.idl
blob
e21baea0179b5ea5da715dbaec4e7ca22d2352d2
1
#ifndef TEST_IDL_
2
#define TEST_IDL_
3
4
struct
FixedLengthInfo
5
{
6
long
a
;
7
long
b
;
8
long
c
;
9
};
10
11
struct
VariableLengthInfo
12
{
13
long
a
;
14
long
b
;
15
long
c
;
16
string
d
;
17
};
18
19
interface
Test
20
{
21
void
do_something_FixedLength
(
out
FixedLengthInfo my_info
);
22
void
do_something_VariableLength
(
out
VariableLengthInfo my_info
);
23
24
oneway
void
shutdown
();
25
};
26
27
#endif
/* TEST_IDL_ */