summaryrefslogtreecommitdiff
path: root/modules/CIAO/tests/CIF/Navigation/Navigation.idl
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2010-05-21 04:11:18 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2010-05-21 04:11:18 +0000
commit163a6565c2b326242a31396e4a23e3b5f68d283d (patch)
treef7fbb1d53a27b85b39ef13da334c63055d067313 /modules/CIAO/tests/CIF/Navigation/Navigation.idl
parentcbdf27ac57d327fd072299b73d3433e6a8063763 (diff)
downloadATCD-locality_manager.tar.gz
merging in headlocality_manager
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;
+};