SOLA
Loading...
Searching...
No Matches
config_reader.h
1// Copyright The SOLA Contributors
2//
3// Licensed under the MIT License.
4// For details on the licensing terms, see the LICENSE file.
5// SPDX-License-Identifier: MIT
6
7#ifndef MINHTON_UTILS_CONFIG_READER_H_
8#define MINHTON_UTILS_CONFIG_READER_H_
9
10#include "minhton/utils/config_node.h"
11
12namespace minhton::config {
13
14minhton::ConfigNode readConfig(std::string path_to_file);
15
16} // namespace minhton::config
17
18#endif
Definition config_node.h:30