diff options
Diffstat (limited to 'ACE/ace/Naming_Context.inl')
-rw-r--r-- | ACE/ace/Naming_Context.inl | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/ACE/ace/Naming_Context.inl b/ACE/ace/Naming_Context.inl new file mode 100644 index 00000000000..4c90343c1ee --- /dev/null +++ b/ACE/ace/Naming_Context.inl @@ -0,0 +1,44 @@ +// $Id$ + +ACE_INLINE bool +ACE_Name_Options::use_registry (void) const +{ + ACE_TRACE ("ACE_Name_Options::use_registry"); + return this->use_registry_; +} + +ACE_INLINE void +ACE_Name_Options::use_registry (bool x) +{ + ACE_TRACE ("ACE_Name_Options::use_registry"); + this->use_registry_ = x; +} + +ACE_INLINE int +ACE_Name_Options::verbose (void) +{ + ACE_TRACE ("ACE_Name_Options::verbose"); + return this->verbosity_; +} + +ACE_INLINE const ACE_TCHAR * +ACE_Name_Options::process_name (void) +{ + ACE_TRACE ("ACE_Name_Options::process_name"); + return this->process_name_; +} + +ACE_INLINE const ACE_TCHAR * +ACE_Name_Options::namespace_dir (void) +{ + ACE_TRACE ("ACE_Name_Options::namespace_dir"); + return this->namespace_dir_; +} + +ACE_INLINE int +ACE_Name_Options::debug (void) +{ + ACE_TRACE ("ACE_Name_Options::debug"); + return this->debugging_; +} + |