mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 19:15:54 +00:00
20 lines
611 B
C++
20 lines
611 B
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
Copyright (c) 2011-2013, OpenCoin, Inc.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#ifndef RIPPLE_CORE_VALIDATOR_VALIDATORSOURCESTRINGS_H_INCLUDED
|
|
#define RIPPLE_CORE_VALIDATOR_VALIDATORSOURCESTRINGS_H_INCLUDED
|
|
|
|
/** Provides validators from a set of Validator strings.
|
|
Typically this will come from a local configuration file.
|
|
*/
|
|
class ValidatorSourceStrings : public Validators::Source
|
|
{
|
|
public:
|
|
static ValidatorSourceStrings* New (StringArray const& strings);
|
|
};
|
|
|
|
#endif
|