复现已有算法
This commit is contained in:
+42
@@ -0,0 +1,42 @@
|
||||
/**
|
||||
*
|
||||
* ConfigLoader.h
|
||||
* An Tao
|
||||
*
|
||||
* Copyright 2018, An Tao. All rights reserved.
|
||||
* https://github.com/an-tao/drogon
|
||||
* Use of this source code is governed by a MIT license
|
||||
* that can be found in the License file.
|
||||
*
|
||||
* Drogon
|
||||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <json/json.h>
|
||||
#include <string>
|
||||
#include <trantor/utils/NonCopyable.h>
|
||||
|
||||
namespace drogon
|
||||
{
|
||||
class ConfigLoader : public trantor::NonCopyable
|
||||
{
|
||||
public:
|
||||
explicit ConfigLoader(const std::string &configFile) noexcept(false);
|
||||
explicit ConfigLoader(const Json::Value &data);
|
||||
explicit ConfigLoader(Json::Value &&data);
|
||||
~ConfigLoader();
|
||||
|
||||
const Json::Value &jsonValue() const
|
||||
{
|
||||
return configJsonRoot_;
|
||||
}
|
||||
|
||||
void load() noexcept(false);
|
||||
|
||||
private:
|
||||
std::string configFile_;
|
||||
Json::Value configJsonRoot_;
|
||||
};
|
||||
} // namespace drogon
|
||||
Reference in New Issue
Block a user