cpp-hocon 0.3.0
Loading...
Searching...
No Matches
abstract_config_node.hpp
1#pragma once
2
3#include <hocon/parser/config_node.hpp>
4#include <internal/token.hpp>
5#include <vector>
6
7namespace hocon {
8
10 public:
11 std::string render() const;
12 bool operator==(const abstract_config_node &other) const;
13 virtual token_list get_tokens() const = 0;
14 };
15
16} // namespace hocon
std::string render() const
The original text of the input which was used to form this particular node.
A node in the syntax tree for a HOCON or JSON document.
Definition: config_node.hpp:21
Factory for creating config_document instances.
Definition: config.hpp:18