//============================================================================= /** * @file old_sequence.idl * * Tests of sequence IDL constructs * * * @author Andy Gokhale */ //============================================================================= #include "simple.idl" typedef sequence c20; typedef sequence cc23; typedef sequence c24; typedef sequence< sequence, 10> c30; typedef sequence cstring; struct TProgram { string path; cstring argv; cstring envp; }; struct sfoo { long f1; char f2; }; typedef sfoo sfoo_ar[20]; typedef sequence f_unbounded; typedef sequence f_ar_unbounded; interface TestSeq { attribute f_unbounded fattr; typedef sequence also_vec10; };