summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjai <jai@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-02-01 23:15:15 +0000
committerjai <jai@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-02-01 23:15:15 +0000
commit7845673cfbd5480b64a8380c979090652660b1b4 (patch)
tree000491bb21953c0a15adf2ccada825ab3c43616a
parent646ba556483b8bf1308738e5df0f075f85043149 (diff)
downloadATCD-7845673cfbd5480b64a8380c979090652660b1b4.tar.gz
adding DS library
-rw-r--r--modules/TAO/tao/PortableServer/Root_POA.cpp6
-rw-r--r--modules/TAO/tao/PortableServer/Root_POA.h3
2 files changed, 9 insertions, 0 deletions
diff --git a/modules/TAO/tao/PortableServer/Root_POA.cpp b/modules/TAO/tao/PortableServer/Root_POA.cpp
index 12f5ffdbc43..0179dcf5925 100644
--- a/modules/TAO/tao/PortableServer/Root_POA.cpp
+++ b/modules/TAO/tao/PortableServer/Root_POA.cpp
@@ -2635,6 +2635,12 @@ TAO_Root_POA::is_servant_active (
is_servant_in_map (servant, wait_occurred_restart_call);
}
+TAO::Portable_Server::Cached_Policies&
+TAO_Root_POA::cached_policies (void)
+{
+ return this->cached_policies_;
+}
+
TAO::Portable_Server::Cached_Policies::PriorityModel
TAO_Root_POA::priority_model (void) const
{
diff --git a/modules/TAO/tao/PortableServer/Root_POA.h b/modules/TAO/tao/PortableServer/Root_POA.h
index d7d69bfb6e3..fcf3a2b0bb4 100644
--- a/modules/TAO/tao/PortableServer/Root_POA.h
+++ b/modules/TAO/tao/PortableServer/Root_POA.h
@@ -404,6 +404,9 @@ public:
/// ORB Core for POA.
TAO_ORB_Core &orb_core (void) const;
+ // obtain a reference to the cached_profiles
+ TAO::Portable_Server::Cached_Policies& cached_policies (void);
+
TAO::Portable_Server::Cached_Policies::PriorityModel priority_model (void) const;
CORBA::Boolean cleanup_in_progress (void);