summaryrefslogtreecommitdiff
path: root/TAO/tao/SmartProxies
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2005-11-04 18:39:05 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2005-11-04 18:39:05 +0000
commitc633e538747abb02b61dcea041ac1a6faa6accd7 (patch)
treed31fd7c07cc84da23911a1402b9807afeebd85b2 /TAO/tao/SmartProxies
parente7dcb66360c346d9d7ec631de64873cf5b30ebad (diff)
downloadATCD-c633e538747abb02b61dcea041ac1a6faa6accd7.tar.gz
ChangeLogTag:Fri Nov 4 10:31:15 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'TAO/tao/SmartProxies')
-rw-r--r--TAO/tao/SmartProxies/Smart_Proxies.h12
-rw-r--r--TAO/tao/SmartProxies/Smart_Proxies.inl7
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