summaryrefslogtreecommitdiff
path: root/CIAO/ciao/Dynamic_Component_Activator.inl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/ciao/Dynamic_Component_Activator.inl')
-rw-r--r--CIAO/ciao/Dynamic_Component_Activator.inl24
1 files changed, 0 insertions, 24 deletions
diff --git a/CIAO/ciao/Dynamic_Component_Activator.inl b/CIAO/ciao/Dynamic_Component_Activator.inl
deleted file mode 100644
index 7faea9b0d15..00000000000
--- a/CIAO/ciao/Dynamic_Component_Activator.inl
+++ /dev/null
@@ -1,24 +0,0 @@
-// $Id$
-
-namespace CIAO
-{
- ACE_INLINE void
- Dynamic_Component_Activator::add_servant_to_map(
- PortableServer::ObjectId &oid,
- Dynamic_Component_Servant_Base* servant)
- {
- this->servant_map_.bind (oid, servant);
- }
-
- ACE_INLINE void
- Dynamic_Component_Activator::delete_servant_from_map(
- PortableServer::ObjectId &oid)
- {
- Dynamic_Component_Servant_Base* servant = 0;
-
- if (this->servant_map_.unbind (oid, servant) != 0)
- {
- ACE_DEBUG ((LM_DEBUG, "Invalid object reference\n"));
- }
- }
-}