Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tests / Bug_3940_Regression / test.idl
blobeda6931bf4bbe5b6df6b78a15ded51fc75b18c7d
1 @annotation unit {
2 string value;
3 };
5 @annotation range {
6 double min;
7 double max;
8 };
10 @annotation min {
11 long value;
14 @annotation max {
15 long value;
18 @annotation key {
21 module test {
23 @unit("deg")
24 @range(min=0.0, max=360.0)
25 typedef float angle_t;
27 @unit("degC") @min(-60) @max(100) typedef short temperature_t;
29 struct structure {
30 @key unsigned long key;
31 angle_t degrees;
32 temperature_t celsius;