summaryrefslogtreecommitdiff
path: root/CIAO/CCF/Example/CIDL/LocalExecutorMapping/test-1_exec.idl.orig
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/CCF/Example/CIDL/LocalExecutorMapping/test-1_exec.idl.orig')
-rw-r--r--CIAO/CCF/Example/CIDL/LocalExecutorMapping/test-1_exec.idl.orig33
1 files changed, 33 insertions, 0 deletions
diff --git a/CIAO/CCF/Example/CIDL/LocalExecutorMapping/test-1_exec.idl.orig b/CIAO/CCF/Example/CIDL/LocalExecutorMapping/test-1_exec.idl.orig
new file mode 100644
index 00000000000..e0a244db6eb
--- /dev/null
+++ b/CIAO/CCF/Example/CIDL/LocalExecutorMapping/test-1_exec.idl.orig
@@ -0,0 +1,33 @@
+#include <Components.idl>
+#include "test-0.idl"
+module M
+{
+ local interface CCM_I : I
+ {
+ };
+};
+module M1
+{
+ local interface CCM_Fool : Fool
+ {
+ };
+ local interface CCM_C1 : ::Components::EnterpriseComponent
+ {
+ ::M::CCM_I get_i ();
+ readonly attribute long l;
+ };
+ local interface CCM_C1_Context : ::Components::SessionContext
+ {
+ };
+ local interface CCM_H1Implicit
+ {
+ ::Components::EnterpriseComponent create () raises (::Components::CCMException);
+ };
+ local interface CCM_H1Explicit : ::Components::HomeExecutorBase
+ {
+ attribute ::M::I i;
+ };
+ local interface CCM_H1 : CCM_H1Explicit, CCM_H1Implicit
+ {
+ };
+};