cpp-hocon  0.3.0
config_includer_file.hpp
1 #pragma once
2 
3 #include "export.h"
4 #include "types.hpp"
5 
6 namespace 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
hocon
Factory for creating config_document instances.
Definition: config.hpp:18
hocon::config_includer_file::include_file
virtual shared_object include_file(shared_include_context context, std::string what) const =0
Parses another item to be included.
hocon::config_includer_file
Implement this in addition to config_includer if you want to support inclusion of files with the.
Definition: config_includer_file.hpp:14