cpp-hocon 0.3.0
Loading...
Searching...
No Matches
config_node_single_token.hpp
1#pragma once
2
3#include <internal/token.hpp>
4#include "abstract_config_node.hpp"
5
6namespace hocon {
7
9 public:
10 config_node_single_token(shared_token t);
11
12 token_list get_tokens() const override;
13
14 shared_token get_token() const;
15
16 private:
17 shared_token _token;
18 };
19
20} // namespace hocon
Factory for creating config_document instances.
Definition: config.hpp:18