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.idl28
1 files changed, 28 insertions, 0 deletions
diff --git a/CIAO/tests/IDL_Test/Inherited_Servants/Base.idl b/CIAO/tests/IDL_Test/Inherited_Servants/Base.idl
new file mode 100644
index 00000000000..6e570086ee9
--- /dev/null
+++ b/CIAO/tests/IDL_Test/Inherited_Servants/Base.idl
@@ -0,0 +1,28 @@
+// $Id$
+
+#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