Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / IDL_Test / reopen_include1.idl
blob056039e647647a94dbfa9c0c176d96383188dc98
2 //=============================================================================
3 /**
4 * @file reopen_include1.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 #ifndef IDL_TEST_REOPEN_INCLUDE1_IDL
18 #define IDL_TEST_REOPEN_INCLUDE1_IDL
20 // First opening of a module included by a chain of
21 // inclusions into reopened_modules.idl
22 module frag
24 typedef sequence<double> dub_seq;
27 // These are in each file in the reopened_modules chain,
28 // and in reopened_modules.idl, test interface parent lookup.
29 module A
31 module B
33 interface X1
35 string getX1 ();
40 #endif /* IDL_TEST_REOPEN_INCLUDE1_IDL */