Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tests / IDL_Test / params.idl
bloba4ab1bdf7769561b29b7c9c299c08e624595e32a
1 /**
2 * @file params.idl
4 * This file contains examples of IDL code that has
5 * caused problems in the past for the TAO IDL
6 * compiler. This test is to make sure the problems
7 * stay fixed.
9 * @author Jeff Parsons <parsons@cs.wustl.edu> and TAO users.
12 module foo
14 struct theDate
16 short year;
17 short month;
18 short day;
21 module bar
23 struct theDate
25 short x;
28 interface fooBar
30 foo::theDate getDate (in foo::theDate a,
31 inout foo::theDate b,
32 out foo::theDate c);