cpp-hocon 0.3.0
Loading...
Searching...
No Matches
path_builder.hpp
1#pragma once
2
3#include <hocon/path.hpp>
4#include <stack>
5
6namespace hocon {
7
9 public:
10 void append_key(std::string key);
11 void append_path(path path_to_append);
12
15
16 private:
17 std::stack<std::string> _keys;
18 };
19
20} // namespace hocon
path result()
Returns null if keys is empty.
Factory for creating config_document instances.
Definition: config.hpp:18