Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tests / IDL_Test / array_only.idl
bloba22afd3b62bf8b86927b96ee2c7aa33a94a65d5b
2 //=============================================================================
3 /**
4 * @file array_only.idl
6 * This file contains examples of IDL code that has
7 * caused problems in the past for the TAO IDL
8 * compiler. This test is to make sure the problems
9 * stay fixed.
12 * @author Jeff Parsons <parsons@cs.wustl.edu> and TAO users.
14 //=============================================================================
17 // The IDL compiler used to generated code that would not compile if
18 // an IDL file contained nothing but an array definition, but only if
19 // the Any insertion/extraction operators were generated. They
20 // depended upon the definition of CORBA::SystemException (in
21 // particular, CORBA::MARSHAL), but the array impl template file in
22 // TAO (tao/AnyTypeCode/Any_Array_Impl_T.cpp) did not have an #include
23 // for "tao/SystemException.h". Now it does.
25 typedef char TEST_TYPE[10];