Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tests / IDL_Test / inherit.idl
blob827ea48047b03af9e04614a7d0008de05b9f6cf2
2 //=============================================================================
3 /**
4 * @file inherit.idl
6 * Tests of interface inheritance in IDL constructs
9 * @author Andy Gokhale <gokhale@dre.vanderbilt.edu>
11 //=============================================================================
14 module OldInherit
16 interface one
18 void op_one ();
20 interface two : one
22 void op_two ();
24 interface three : one
26 void op_three ();
28 interface four : two, three
30 void op_four ();
33 interface five : four, three, two
35 void op_five ();