summaryrefslogtreecommitdiff
path: root/CIAO/tests/IDL_Test/Inherited_Servants/Base.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/tests/IDL_Test/Inherited_Servants/Base.idl')
-rw-r--r--CIAO/tests/IDL_Test/Inherited_Servants/Base.idl26
1 files changed, 0 insertions, 26 deletions
diff --git a/CIAO/tests/IDL_Test/Inherited_Servants/Base.idl b/CIAO/tests/IDL_Test/Inherited_Servants/Base.idl
deleted file mode 100644
index f08624b79af..00000000000
--- a/CIAO/tests/IDL_Test/Inherited_Servants/Base.idl
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef BASE_IDL
-#define BASE_IDL
-
-#include <Components.idl>
-
-#pragma ciao lem "BaseE.idl"
-
-module Inherited
-{
- interface base_interface {
-// void do_base ();
-// attribute string str_base_interface;
- };
-};
-
-module Inherited
-{
- component Base_comp
- {
- provides Inherited::base_interface prov_base;
- uses Inherited::base_interface uses_base;
- attribute long base;
- };
-};
-
-#endif