summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Log/PersistStore.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Log/PersistStore.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Log/PersistStore.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Log/PersistStore.cpp b/TAO/orbsvcs/orbsvcs/Log/PersistStore.cpp
index cd4de8a0606..857d07740f2 100644
--- a/TAO/orbsvcs/orbsvcs/Log/PersistStore.cpp
+++ b/TAO/orbsvcs/orbsvcs/Log/PersistStore.cpp
@@ -1,4 +1,4 @@
-#include "orbsvcs/Log/PersistStore.h"
+#include "PersistStore.h"
#include "tao/AnyTypeCode/Any_Unknown_IDL_Type.h"
#include "ace/OS_NS_fcntl.h"
#include "ace/OS_NS_sys_time.h"
@@ -11,8 +11,6 @@ ACE_RCSID (Log,
PersistStore,
"$Id$")
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
TAO_PersistStore::TAO_PersistStore (CORBA::ULongLong max_size,
CORBA::ULong max_rec_list_len)
: maxid_ (0),
@@ -21,10 +19,12 @@ TAO_PersistStore::TAO_PersistStore (CORBA::ULongLong max_size,
num_records_ (0),
max_rec_list_len_ (max_rec_list_len)
{
+ // No-Op.
}
TAO_PersistStore::~TAO_PersistStore (void)
{
+ // No-Op.
}
int
@@ -225,5 +225,3 @@ TAO_PersistStore::get_percentage_full (void)
return static_cast<unsigned short> ((100U * this->current_size_ / this->max_size_));
}
-
-TAO_END_VERSIONED_NAMESPACE_DECL