More tests update
[ACE_TAO.git] / TAO / tests / Bug_3940_Regression / test.idl
blob904c8910ddc6692a08f2aca9a45733049f94779e
1 #if !defined (__BORLANDC__)
3 @annotation unit {
4 string value;
5 };
7 @annotation range {
8 double min;
9 double max;
12 @annotation min {
13 long value;
16 @annotation max {
17 long value;
20 @annotation key {
23 module test {
25 @unit("deg")
26 @range(min=0.0, max=360.0)
27 typedef float angle_t;
29 @unit("degC") @min(-60) @max(100) typedef short temperature_t;
31 struct structure {
32 @key unsigned long key;
33 angle_t degrees;
34 temperature_t celsius;
39 #endif