summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Name_Value_Pair.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/Name_Value_Pair.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Name_Value_Pair.cpp14
1 files changed, 9 insertions, 5 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Name_Value_Pair.cpp b/TAO/orbsvcs/orbsvcs/Notify/Name_Value_Pair.cpp
index 441cbc41493..efda609e5f1 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Name_Value_Pair.cpp
+++ b/TAO/orbsvcs/orbsvcs/Notify/Name_Value_Pair.cpp
@@ -1,15 +1,15 @@
// $Id$
-#include "Name_Value_Pair.h"
-#include "Property_T.h"
+#include "orbsvcs/Notify/Name_Value_Pair.h"
+#include "orbsvcs/Notify/Property_T.h"
#include "ace/OS_String.h"
#include "ace/OS_NS_stdio.h"
namespace
{
- ACE_UINT64 string_to_uint64(const char * s)
+ ACE_UINT64 string_to_uint64 (const char * s)
{
- size_t len = ACE_OS::strlen (s);
+ size_t const len = ACE_OS::strlen (s);
if (len == 0)
return 0;
if (! isdigit(s[0]))
@@ -29,6 +29,8 @@ namespace
}
}
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
namespace TAO_Notify
{
NVP::NVP()
@@ -205,8 +207,10 @@ namespace TAO_Notify
const NVP& NVPList::operator[](size_t ndx) const
{
- ACE_ASSERT(ndx < list_.size());
+ ACE_ASSERT (ndx < list_.size());
return list_[ndx];
}
} // namespace TAO_Notify
+
+TAO_END_VERSIONED_NAMESPACE_DECL