summaryrefslogtreecommitdiff
path: root/CIAO/ciao/Dynamic_Component_Activator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/ciao/Dynamic_Component_Activator.cpp')
-rw-r--r--CIAO/ciao/Dynamic_Component_Activator.cpp47
1 files changed, 0 insertions, 47 deletions
diff --git a/CIAO/ciao/Dynamic_Component_Activator.cpp b/CIAO/ciao/Dynamic_Component_Activator.cpp
deleted file mode 100644
index 5145f67d56b..00000000000
--- a/CIAO/ciao/Dynamic_Component_Activator.cpp
+++ /dev/null
@@ -1,47 +0,0 @@
-#include "ciao/Dynamic_Component_Activator.h"
-#include "ciao/Dynamic_Component_Servant_Base.h"
-
-ACE_RCSID (ciao,
- Dynamic_Component_Activator,
- "$Id$")
-
-#if !defined (__ACE_INLINE__)
-# include "Dynamic_Component_Activator.inl"
-#endif /* __ACE_INLINE__ */
-
-namespace CIAO
-{
- Dynamic_Component_Activator::Dynamic_Component_Activator (CORBA::ORB_ptr o)
- : orb_ (CORBA::ORB::_duplicate (o))
- {
- }
-
- Dynamic_Component_Activator::~Dynamic_Component_Activator (void)
- {
- }
-
- PortableServer::Servant
- Dynamic_Component_Activator::incarnate (const PortableServer::ObjectId &oid,
- PortableServer::POA_ptr)
- {
- Dynamic_Component_Servant_Base* servant = 0;
- PortableServer::ObjectId new_oid (oid);
-
- if (this->servant_map_.find (oid, servant) == 0)
- {
- return servant->create (new_oid);
- }
-
- return 0;
- }
-
- void
- Dynamic_Component_Activator::etherealize (
- const PortableServer::ObjectId &,
- PortableServer::POA_ptr,
- PortableServer::Servant,
- CORBA::Boolean,
- CORBA::Boolean)
- {
- }
-}