// $Id$ // ============================================================================ // // = LIBRARY // TAO/tests/IDL_Test // // = FILENAME // included.idl // // = DESCRIPTION // This file contains examples of IDL code that has // caused problems in the past for the TAO IDL // compiler. This test is to make sure the problems // stay fixed. // // = AUTHORS // Jeff Parsons and TAO users. // // ============================================================================ #ifndef IDL_TEST_INCLUDED_IDL #define IDL_TEST_INCLUDED_IDL // Included in IDL file 'including.idl'. module Aok { typedef sequence Seq1Type; typedef long Me; }; enum Agog { Agog1, Agog2, Agog3 }; // This valuetype is used in a sequence in the including file, // and tests that Value_VarOut_T.h is included early enough. module VT_Def { valuetype VT {}; }; #endif /* IDL_TEST_INCLUDED_IDL */