cpp-hocon 0.3.0
Loading...
Searching...
No Matches
config_includer_file.hpp
1#pragma once
2
3#include "export.h"
4#include "types.hpp"
5
6namespace hocon {
7
14 class LIBCPP_HOCON_EXPORT config_includer_file {
15 public:
27 virtual shared_object include_file(shared_include_context context, std::string what) const = 0;
28 };
29
30} // namespace hocon
Implement this in addition to config_includer if you want to support inclusion of files with the incl...
virtual shared_object include_file(shared_include_context context, std::string what) const =0
Parses another item to be included.
Factory for creating config_document instances.
Definition: config.hpp:18