mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
24 lines
510 B
C++
24 lines
510 B
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
Copyright (c) 2011-2013, OpenCoin, Inc.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#ifndef RIPPLE_VALIDATORS_SOURCEURL_H_INCLUDED
|
|
#define RIPPLE_VALIDATORS_SOURCEURL_H_INCLUDED
|
|
|
|
namespace Validators
|
|
{
|
|
|
|
/** Provides validators from a trusted URI (e.g. HTTPS)
|
|
*/
|
|
class SourceURL : public Source
|
|
{
|
|
public:
|
|
static SourceURL* New (UniformResourceLocator const& url);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|