UI for Application Config

This commit is contained in:
Elia Zammuto
2021-05-16 20:06:06 +02:00
parent 27a1144217
commit 03236a50e5
5 changed files with 492 additions and 9 deletions
+2
View File
@@ -5,6 +5,7 @@
#include <string>
#include <bitset>
#include <optional>
#include <unordered_map>
namespace config {
struct video_t {
@@ -96,6 +97,7 @@ extern input_t input;
extern sunshine_t sunshine;
int parse(int argc, char *argv[]);
std::unordered_map<std::string, std::string> parse_config(std::string_view file_content);
}
#endif