Migrate validators and testoverlay to the new style of source organization

This commit is contained in:
Vinnie Falco
2013-09-11 19:52:16 -07:00
parent fb804bd1bd
commit a48bcfeddb
34 changed files with 1491 additions and 184 deletions

View File

@@ -0,0 +1,18 @@
//------------------------------------------------------------------------------
/*
Copyright (c) 2011-2013, OpenCoin, Inc.
*/
//==============================================================================
#ifndef RIPPLE_CORE_VALIDATOR_VALIDATORSOURCETRUSTEDURL_H_INCLUDED
#define RIPPLE_CORE_VALIDATOR_VALIDATORSOURCETRUSTEDURL_H_INCLUDED
/** Provides validators from a trusted URI (e.g. HTTPS)
*/
class ValidatorSourceURL : public Validators::Source
{
public:
static ValidatorSourceURL* New (UniformResourceLocator const& url);
};
#endif