mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
25 lines
452 B
C++
25 lines
452 B
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
Copyright (c) 2011-2013, OpenCoin, Inc.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#ifndef RIPPLE_VALIDATORS_VALIDATORSSTORE_H_INCLUDED
|
|
#define RIPPLE_VALIDATORS_VALIDATORSSTORE_H_INCLUDED
|
|
|
|
namespace Validators
|
|
{
|
|
|
|
/** Database persistence for Validators. */
|
|
class Store
|
|
{
|
|
public:
|
|
virtual ~Store () { }
|
|
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|