Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / tests / Alt_Mapping / alt_mapping.idl
blob7bd283281004c803111515792d9d134f7c20edfd
1 interface Alt_Mapping
3 string test_unbounded_string (in string s1,
4 inout string s2,
5 out string s3);
7 struct Fixed_Struct
9 long l;
10 char c;
11 short s;
12 octet o;
13 float f;
14 boolean b;
15 double d;
19 typedef sequence<Fixed_Struct> StructSeq;
20 StructSeq test_struct_sequence (in StructSeq s1,
21 inout StructSeq s2,
22 out StructSeq s3);
24 void shutdown ();
25 // Shutdown the server: this is useful to check for memory leaks,
26 // performance results and in general to verify that orderly
27 // shutdown is possible.