This repository was archived by the owner on Sep 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathConfig.h
More file actions
46 lines (34 loc) · 1.33 KB
/
Config.h
File metadata and controls
46 lines (34 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
This file is part of duckOS.
duckOS is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
duckOS is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with duckOS. If not, see <https://www.gnu.org/licenses/>.
Copyright (c) Byteduck 2016-2021. All rights reserved.
*/
#pragma once
#include <map>
#include "Result.h"
#include "Stream.h"
#include "Path.h"
namespace Duck {
class Config {
public:
std::map<std::string, std::string>& operator[](const std::string& name);
std::map<std::string, std::string>& section(const std::string& name);
std::map<std::string, std::string>& defaults();
bool has_section(const std::string& name);
static ResultRet<Config> read_from(const Path& filename);
static ResultRet<Config> read_from(InputStream& stream);
private:
Config() = default;
static Result read_from(InputStream& stream, Config& config);
std::map<std::string, std::map<std::string, std::string>> _values;
};
}