summaryrefslogtreecommitdiff
path: root/trunk/TAO/tao/ImR_Client/ServerObject_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/tao/ImR_Client/ServerObject_i.cpp')
-rw-r--r--trunk/TAO/tao/ImR_Client/ServerObject_i.cpp41
1 files changed, 41 insertions, 0 deletions
diff --git a/trunk/TAO/tao/ImR_Client/ServerObject_i.cpp b/trunk/TAO/tao/ImR_Client/ServerObject_i.cpp
new file mode 100644
index 00000000000..8e777df8a31
--- /dev/null
+++ b/trunk/TAO/tao/ImR_Client/ServerObject_i.cpp
@@ -0,0 +1,41 @@
+// $Id$
+
+#include "tao/ImR_Client/ServerObject_i.h"
+#include "tao/PortableServer/Root_POA.h"
+#include "tao/orbconf.h"
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+ServerObject_i::ServerObject_i (CORBA::ORB_ptr orb,
+ PortableServer::POA_ptr poa)
+ : orb_ (CORBA::ORB::_duplicate (orb)),
+ poa_ (PortableServer::POA::_duplicate (poa))
+{
+}
+
+void
+ServerObject_i::ping (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
+ ACE_THROW_SPEC ((CORBA::SystemException))
+{
+}
+
+void
+ServerObject_i::shutdown (ACE_ENV_SINGLE_ARG_DECL)
+ ACE_THROW_SPEC ((CORBA::SystemException))
+{
+ // Note : We want our child POAs to be able to unregister themselves from
+ // the ImR, so we must destroy them before shutting down the orb.
+ poa_->destroy(1, 0 ACE_ENV_ARG_PARAMETER);
+ ACE_CHECK;
+ this->orb_->shutdown (0 ACE_ENV_ARG_PARAMETER);
+ ACE_CHECK;
+}
+
+PortableServer::POA_ptr
+ServerObject_i::_default_POA (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
+{
+ return PortableServer::POA::_duplicate (this->poa_.in ());
+}
+
+
+TAO_END_VERSIONED_NAMESPACE_DECL