summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/InterfaceRepo/IFR_Inheritance_Test/IFR_Inheritance_Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/InterfaceRepo/IFR_Inheritance_Test/IFR_Inheritance_Test.idl')
-rw-r--r--TAO/orbsvcs/tests/InterfaceRepo/IFR_Inheritance_Test/IFR_Inheritance_Test.idl33
1 files changed, 0 insertions, 33 deletions
diff --git a/TAO/orbsvcs/tests/InterfaceRepo/IFR_Inheritance_Test/IFR_Inheritance_Test.idl b/TAO/orbsvcs/tests/InterfaceRepo/IFR_Inheritance_Test/IFR_Inheritance_Test.idl
deleted file mode 100644
index 55d1cb99edb..00000000000
--- a/TAO/orbsvcs/tests/InterfaceRepo/IFR_Inheritance_Test/IFR_Inheritance_Test.idl
+++ /dev/null
@@ -1,33 +0,0 @@
-// $Id$
-#ifndef __IFR_INHERITANCE_TEST_DEFINED
-#define __IFR_INHERITANCE_TEST_DEFINED
-
-module IFR_Test
-{
- typedef sequence<string> NameList;
-
- interface InterfaceRoot
- {
- readonly attribute string root_attr1;
- attribute string root_attr2;
-
- void get_root(in string root_name, out InterfaceRoot iroot);
-
- readonly attribute string root_attr3;
-
- NameList get_all_roots();
- };
-
- interface SubInterface : InterfaceRoot
- {
- attribute long sub_attr1;
-
- void set_sub(in string sub_name);
-
- NameList get_all_subs();
-
- readonly attribute string sub_attr2;
- };
-};
-
-#endif