3 #include "config_document.hpp"
4 #include <hocon/config_parse_options.hpp>
10 namespace hocon {
namespace config_document_factory {
21 LIBCPP_HOCON_EXPORT std::shared_ptr<config_document> parse_file(std::string input_file_path,
22 config_parse_options options);
25 LIBCPP_HOCON_EXPORT std::shared_ptr<config_document> parse_file(std::string input_file_path);
34 LIBCPP_HOCON_EXPORT std::shared_ptr<config_document> parse_string(std::string s, config_parse_options options);
37 LIBCPP_HOCON_EXPORT std::shared_ptr<config_document> parse_string(std::string s);