mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
20 lines
574 B
C++
20 lines
574 B
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
Copyright (c) 2011-2013, OpenCoin, Inc.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#ifndef RIPPLE_CORE_VALIDATOR_VALIDATORSOURCEFILE_H_INCLUDED
|
|
#define RIPPLE_CORE_VALIDATOR_VALIDATORSOURCEFILE_H_INCLUDED
|
|
|
|
/** Provides validators from a text file.
|
|
Typically this will come from a local configuration file.
|
|
*/
|
|
class ValidatorSourceFile : public Validators::Source
|
|
{
|
|
public:
|
|
static ValidatorSourceFile* New (File const& path);
|
|
};
|
|
|
|
#endif
|