diff options
Diffstat (limited to 'TAO/tao/SmartProxies')
-rw-r--r-- | TAO/tao/SmartProxies/Smart_Proxies.h | 12 | ||||
-rw-r--r-- | TAO/tao/SmartProxies/Smart_Proxies.inl | 7 |
2 files changed, 13 insertions, 6 deletions
diff --git a/TAO/tao/SmartProxies/Smart_Proxies.h b/TAO/tao/SmartProxies/Smart_Proxies.h index f8810fc8d40..467c1ed4267 100644 --- a/TAO/tao/SmartProxies/Smart_Proxies.h +++ b/TAO/tao/SmartProxies/Smart_Proxies.h @@ -1,5 +1,4 @@ -// $Id$ -// This may look like C, but it's really -*- C++ -*- +// -*- C++ -*- //============================================================================= /** @@ -27,6 +26,8 @@ # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ +TAO_BEGIN_VERSIONED_NAMESPACE_DECL + /** * @class TAO_Smart_Proxy_Base * @@ -34,10 +35,9 @@ * * Contains the _var pointer to the real proxy. */ -class TAO_SmartProxies_Export TAO_Smart_Proxy_Base : - public TAO_Local_RefCounted_Object +class TAO_SmartProxies_Export TAO_Smart_Proxy_Base + : public TAO_Local_RefCounted_Object { - public: /// Destructor virtual ~TAO_Smart_Proxy_Base (void); @@ -53,6 +53,8 @@ protected: CORBA::Object_var base_proxy_; }; +TAO_END_VERSIONED_NAMESPACE_DECL + #if defined (__ACE_INLINE__) #include "Smart_Proxies.inl" #endif /* defined INLINE */ diff --git a/TAO/tao/SmartProxies/Smart_Proxies.inl b/TAO/tao/SmartProxies/Smart_Proxies.inl index b75c0a5d096..232cacd0f34 100644 --- a/TAO/tao/SmartProxies/Smart_Proxies.inl +++ b/TAO/tao/SmartProxies/Smart_Proxies.inl @@ -1,6 +1,9 @@ -/* -*- C++ -*- */ +// -*- C++ -*- +// // $Id$ +TAO_BEGIN_VERSIONED_NAMESPACE_DECL + ACE_INLINE TAO_Smart_Proxy_Base::TAO_Smart_Proxy_Base (void) { @@ -16,3 +19,5 @@ ACE_INLINE TAO_Smart_Proxy_Base::~TAO_Smart_Proxy_Base (void) { } + +TAO_END_VERSIONED_NAMESPACE_DECL |