cpp-hocon 0.3.0
Loading...
Searching...
No Matches
config_node_simple_value.hpp
1#pragma once
2
3#include "abstract_config_node_value.hpp"
4#include <hocon/config_value.hpp>
5
6namespace hocon {
7
9 public:
10 config_node_simple_value(shared_token value);
11
12 shared_token get_token() const;
13 shared_value get_value() const;
14
15 token_list get_tokens() const override;
16
17 private:
18 shared_token _token;
19 };
20
21} // namespace hocon
This is used to classify certain abstract_config_node subclasses.
Factory for creating config_document instances.
Definition: config.hpp:18