summaryrefslogtreecommitdiff
path: root/orbsvcs/orbsvcs/Log/Hash_Persistence_Strategy.cpp
blob: fb31e17e4dee3a172f622b83c0bbd4fd539b0dd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// $Id$

#include "orbsvcs/Log/Hash_Persistence_Strategy.h"
#include "orbsvcs/Log/Hash_LogStore.h"

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

TAO_Hash_Persistence_Strategy::TAO_Hash_Persistence_Strategy()
{
}


TAO_Hash_Persistence_Strategy::~TAO_Hash_Persistence_Strategy()
{
}

TAO_LogStore *
TAO_Hash_Persistence_Strategy::create_log_store(TAO_LogMgr_i *logmgr_i)
{
  return new TAO_Hash_LogStore (logmgr_i);
}

TAO_END_VERSIONED_NAMESPACE_DECL