cpp-hocon  0.3.0
config_value_factory.hpp
1 # pragma once
2 
3 #include "types.hpp"
4 #include "export.h"
5 #include <string>
6 
7 namespace 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
hocon
Factory for creating config_document instances.
Definition: config.hpp:18
hocon::config_value_factory::from_any_ref
static shared_value from_any_ref(unwrapped_value value, std::string origin_description="")
Creates a config_value from a plain value, which may be a bool, long, string, unordered_map,...
hocon::value
Definition: tokens.hpp:8
hocon::config_value_factory
Definition: config_value_factory.hpp:8