summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Log/Hash_Persistence_Strategy.cpp
blob: 91f7c455423e9507702f756113c1bb840ae9f484 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include "orbsvcs/Log/Hash_Persistence_Strategy.h"
#include "orbsvcs/Log/Hash_LogStore.h"

ACE_RCSID (Log,
           Hash_Persistence_Strategy,
           "$Id$")

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(CORBA::ORB_ptr orb,
                                                TAO_LogMgr_i *mgr)
{
  return new TAO_Hash_LogStore (orb, mgr);
}

TAO_END_VERSIONED_NAMESPACE_DECL