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