summaryrefslogtreecommitdiff
path: root/modules/CIAO/tests/CIAO_ComponentServer/SimpleComponent/SimpleComponent.idl
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/tests/CIAO_ComponentServer/SimpleComponent/SimpleComponent.idl')
-rw-r--r--modules/CIAO/tests/CIAO_ComponentServer/SimpleComponent/SimpleComponent.idl21
1 files changed, 21 insertions, 0 deletions
diff --git a/modules/CIAO/tests/CIAO_ComponentServer/SimpleComponent/SimpleComponent.idl b/modules/CIAO/tests/CIAO_ComponentServer/SimpleComponent/SimpleComponent.idl
new file mode 100644
index 00000000000..dcf676fb276
--- /dev/null
+++ b/modules/CIAO/tests/CIAO_ComponentServer/SimpleComponent/SimpleComponent.idl
@@ -0,0 +1,21 @@
+//$Id$
+
+#include <Components.idl>
+
+module Foo
+{
+ interface Simple
+ {
+ void trigger ();
+ };
+
+ component SimpleComponent supports Simple
+ {
+ readonly attribute string creationtype_;
+ };
+
+ home SimpleHome manages SimpleComponent
+ {
+ };
+};
+