mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
27 lines
625 B
C++
27 lines
625 B
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
Copyright (c) 2011-2013, OpenCoin, Inc.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#ifndef RIPPLE_VALIDATORS_SOURCESTRINGS_H_INCLUDED
|
|
#define RIPPLE_VALIDATORS_SOURCESTRINGS_H_INCLUDED
|
|
|
|
namespace ripple {
|
|
namespace Validators {
|
|
|
|
/** Provides validators from a set of Validator strings.
|
|
Typically this will come from a local configuration file.
|
|
*/
|
|
class SourceStrings : public Source
|
|
{
|
|
public:
|
|
static SourceStrings* New (
|
|
String name, StringArray const& strings);
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|