diff options
Diffstat (limited to 'TAO/tests/Skeleton_Inheritance/idl_2.idl')
-rw-r--r-- | TAO/tests/Skeleton_Inheritance/idl_2.idl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/TAO/tests/Skeleton_Inheritance/idl_2.idl b/TAO/tests/Skeleton_Inheritance/idl_2.idl new file mode 100644 index 00000000000..ccf628c4436 --- /dev/null +++ b/TAO/tests/Skeleton_Inheritance/idl_2.idl @@ -0,0 +1,15 @@ +// +// $Id$ +// + +#include "idl_1.idl" + +module Skeleton_Inheritance +{ + interface Interface_2 : Interface_1 + { + string operation_2 (); + + readonly attribute string attribute_2; + }; +}; |