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
More tests update
[ACE_TAO.git]
/
TAO
/
tests
/
Bug_3940_Regression
/
test.idl
blob
904c8910ddc6692a08f2aca9a45733049f94779e
1
#if
!
defined
(
__BORLANDC__
)
2
3
@annotation unit
{
4
string
value
;
5
};
6
7
@annotation
range
{
8
double
min
;
9
double
max
;
10
};
11
12
@annotation min
{
13
long
value
;
14
};
15
16
@annotation max
{
17
long
value
;
18
};
19
20
@annotation key
{
21
};
22
23
module
test
{
24
25
@unit
(
"deg"
)
26
@
range
(
min
=
0.0
,
max
=
360.0
)
27
typedef
float
angle_t
;
28
29
@unit
(
"degC"
)
@min
(-
60
)
@max
(
100
)
typedef
short
temperature_t
;
30
31
struct
structure
{
32
@key
unsigned long
key
;
33
angle_t degrees
;
34
temperature_t celsius
;
35
};
36
37
};
38
39
#endif