=default for generated implementation copy ctor
[ACE_TAO.git] / TAO / tests / IDL_Test / old_sequence.idl
bloba68dd355d197533396243297c04b9bc9f37d1619
2 //=============================================================================
3 /**
4 * @file old_sequence.idl
6 * Tests of sequence IDL constructs
9 * @author Andy Gokhale <gokhale@dre.vanderbilt.edu>
11 //=============================================================================
14 #include "simple.idl"
16 typedef sequence<char,20> c20;
17 typedef sequence<c20,23> cc23;
18 typedef sequence<char,24> c24;
19 typedef sequence< sequence<long,10>, 10> c30;
21 typedef sequence<string> cstring;
22 struct TProgram
24 string path;
25 cstring argv;
26 cstring envp;
29 struct sfoo
31 long f1;
32 char f2;
35 typedef sfoo sfoo_ar[20];
36 typedef sequence<sfoo> f_unbounded;
37 typedef sequence<sfoo_ar> f_ar_unbounded;
39 interface TestSeq
41 attribute f_unbounded fattr;
42 typedef sequence<long,10> also_vec10;