summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Log/LogMgr_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Log/LogMgr_i.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Log/LogMgr_i.cpp20
1 files changed, 19 insertions, 1 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Log/LogMgr_i.cpp b/TAO/orbsvcs/orbsvcs/Log/LogMgr_i.cpp
index 1137822914f..23bb04d2ea1 100644
--- a/TAO/orbsvcs/orbsvcs/Log/LogMgr_i.cpp
+++ b/TAO/orbsvcs/orbsvcs/Log/LogMgr_i.cpp
@@ -112,7 +112,7 @@ TAO_LogMgr_i::init (CORBA::ORB_ptr orb,
strategy_ = new TAO_Hash_Persistence_Strategy;
}
- logstore_ = strategy_->create_log_store (orb, this);
+ logstore_ = strategy_->create_log_store (this);
}
PortableServer::ObjectId*
@@ -275,4 +275,22 @@ TAO_LogMgr_i::create_with_id_i (DsLogAdmin::LogId id,
ACE_CHECK;
}
+CORBA::ORB_ptr
+TAO_LogMgr_i::orb ()
+{
+ return this->orb_.in ();
+}
+
+PortableServer::POA_ptr
+TAO_LogMgr_i::factory_poa ()
+{
+ return this->factory_poa_.in ();
+}
+
+PortableServer::POA_ptr
+TAO_LogMgr_i::log_poa ()
+{
+ return this->log_poa_.in ();
+}
+
TAO_END_VERSIONED_NAMESPACE_DECL