cpp-hocon 0.3.0
Loading...
Searching...
No Matches
config_node.hpp
1#pragma once
2
3#include <string>
4#include "../export.h"
5
6namespace hocon {
21 class LIBCPP_HOCON_EXPORT config_node {
22 public:
29 virtual std::string render() const = 0;
30 };
31
32} // namespace hocon
A node in the syntax tree for a HOCON or JSON document.
Definition: config_node.hpp:21
virtual std::string render() const =0
The original text of the input which was used to form this particular node.
Factory for creating config_document instances.
Definition: config.hpp:18