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