summaryrefslogtreecommitdiff
path: root/modules/CIAO/tests/CIF/Navigation/Navigation.idl
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/tests/CIF/Navigation/Navigation.idl')
-rw-r--r--modules/CIAO/tests/CIF/Navigation/Navigation.idl18
1 files changed, 18 insertions, 0 deletions
diff --git a/modules/CIAO/tests/CIF/Navigation/Navigation.idl b/modules/CIAO/tests/CIF/Navigation/Navigation.idl
new file mode 100644
index 00000000000..afd92b3e403
--- /dev/null
+++ b/modules/CIAO/tests/CIF/Navigation/Navigation.idl
@@ -0,0 +1,18 @@
+// $Id$
+#include <Components.idl>
+
+interface foo
+{
+ void do_foo ();
+};
+
+interface foo_inherited : Components::Navigation
+{
+ void do_inherited_foo ();
+};
+
+component Navigation
+{
+ provides foo navigation_foo;
+ provides foo_inherited inherited_foo;
+};