summaryrefslogtreecommitdiff
path: root/TAO/tao/params.i
diff options
context:
space:
mode:
authorvishal <vishal@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-03-22 22:43:56 +0000
committervishal <vishal@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-03-22 22:43:56 +0000
commitad0bce8554c7f8915086bfe8268c1e6fa43f9e73 (patch)
tree6fd76c1a32250feb0c48a60fca3c1817cff07310 /TAO/tao/params.i
parentfe7dca8f3f0a820d1651419fec55f6af17b95231 (diff)
downloadATCD-ad0bce8554c7f8915086bfe8268c1e6fa43f9e73.tar.gz
ChangeLogTag:Mon Mar 22 16:40:36 1999 Vishal Kachroo <vishal@merengue.cs.wustl.edu>
Diffstat (limited to 'TAO/tao/params.i')
-rw-r--r--TAO/tao/params.i25
1 files changed, 25 insertions, 0 deletions
diff --git a/TAO/tao/params.i b/TAO/tao/params.i
index c258811bb4a..79619f37ba0 100644
--- a/TAO/tao/params.i
+++ b/TAO/tao/params.i
@@ -197,3 +197,28 @@ TAO_ORB_Parameters::trading_service_port (void) const
{
return this->trading_service_port_;
}
+
+ACE_INLINE TAO_IOR_LookupTable *
+TAO_ORB_Parameters::ior_lookup_table (void)
+{
+ return this->ior_lookup_table_;
+}
+
+ACE_INLINE void
+TAO_ORB_Parameters::ior_lookup_table (TAO_IOR_LookupTable *table)
+{
+ this->ior_lookup_table_ = table;
+}
+
+ACE_INLINE void
+TAO_ORB_Parameters::default_init_ref (const ACE_CString &default_init_ref)
+{
+ this->default_init_ref_ = default_init_ref;
+}
+
+ACE_INLINE char *
+TAO_ORB_Parameters::default_init_ref (void) const
+{
+ return this->default_init_ref_.rep ();
+}
+