summaryrefslogtreecommitdiff
path: root/tests/CIAO_ComponentServer/Local_Facet/Local_Facet.idl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/CIAO_ComponentServer/Local_Facet/Local_Facet.idl')
-rw-r--r--tests/CIAO_ComponentServer/Local_Facet/Local_Facet.idl18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/CIAO_ComponentServer/Local_Facet/Local_Facet.idl b/tests/CIAO_ComponentServer/Local_Facet/Local_Facet.idl
new file mode 100644
index 00000000000..82b82b5e6a2
--- /dev/null
+++ b/tests/CIAO_ComponentServer/Local_Facet/Local_Facet.idl
@@ -0,0 +1,18 @@
+// $Id$
+#include <Components.idl>
+
+interface trigger
+{
+ oneway void run_test ();
+};
+
+local interface Foo
+{
+ void simple ();
+};
+
+component Bar supports trigger
+{
+ uses Foo foo_in;
+ provides Foo foo_out;
+};