summaryrefslogtreecommitdiff
path: root/CIAO/ccm/Entity/CCM_EntityComponent.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/ccm/Entity/CCM_EntityComponent.idl')
-rw-r--r--CIAO/ccm/Entity/CCM_EntityComponent.idl43
1 files changed, 0 insertions, 43 deletions
diff --git a/CIAO/ccm/Entity/CCM_EntityComponent.idl b/CIAO/ccm/Entity/CCM_EntityComponent.idl
deleted file mode 100644
index 8943cff4169..00000000000
--- a/CIAO/ccm/Entity/CCM_EntityComponent.idl
+++ /dev/null
@@ -1,43 +0,0 @@
-// Compliant with OMG 06-04-01 Section 9.3.4.2
-
-#if !defined (CCM_ENTITYCOMPONENT_IDL)
-#define CCM_ENTITYCOMPONENT_IDL
-
-#include "ccm/CCM_CCMException.idl"
-#include "ccm/CCM_EnterpriseComponent.idl"
-#include "ccm/Entity/CCM_EntityContext.idl"
-
-#if !defined (CCM_LW)
-
-module Components
-{
- typeprefix Components "omg.org";
-
- local interface EntityComponent : EnterpriseComponent
- {
- void set_entity_context (in EntityContext ctx)
- raises (CCMException);
-
- void unset_entity_context ()
- raises (CCMException);
-
- void ccm_activate ()
- raises (CCMException);
-
- void ccm_load ()
- raises (CCMException);
-
- void ccm_store ()
- raises (CCMException);
-
- void ccm_passivate ()
- raises (CCMException);
-
- void ccm_remove ()
- raises (CCMException);
- };
-};
-
-#endif
-
-#endif /* CCM_ENTITYCOMPONENT_IDL */