summaryrefslogtreecommitdiff
path: root/modules/CIAO/ciao/CCM_ExtensionComponent.idl
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/ciao/CCM_ExtensionComponent.idl')
-rw-r--r--modules/CIAO/ciao/CCM_ExtensionComponent.idl20
1 files changed, 20 insertions, 0 deletions
diff --git a/modules/CIAO/ciao/CCM_ExtensionComponent.idl b/modules/CIAO/ciao/CCM_ExtensionComponent.idl
new file mode 100644
index 00000000000..585e5e85f64
--- /dev/null
+++ b/modules/CIAO/ciao/CCM_ExtensionComponent.idl
@@ -0,0 +1,20 @@
+// $Id$
+
+#if !defined (CCM_EXTENSIONCOMPONENT_IDL)
+#define CCM_EXTENSIONCOMPONENT_IDL
+
+#include "ciao/CCM_EnterpriseComponent.idl"
+#include "ciao/CCM_ExtensionContext.idl"
+
+module Components
+{
+ local interface ExtensionComponent : EnterpriseComponent
+ {
+ void set_extension_context (in ExtensionContext ctx)
+ raises (CCMException);
+ void ccm_remove ()
+ raises (CCMException);
+ };
+};
+
+#endif /* CCM_EXTENSIONCOMPONENT_IDL */