cpp-hocon 0.3.0
Loading...
Searching...
No Matches
config_value_factory.hpp
1# pragma once
2
3#include "types.hpp"
4#include "export.h"
5#include <string>
6
7namespace hocon {
8 class LIBCPP_HOCON_EXPORT config_value_factory {
9 public:
46 static shared_value from_any_ref(unwrapped_value value, std::string origin_description = "");
47 };
48} // namespace hocon
static shared_value from_any_ref(unwrapped_value value, std::string origin_description="")
Creates a ConfigValue from a plain value, which may be a bool, long, string, unordered_map,...
Factory for creating config_document instances.
Definition: config.hpp:18