Load settings from config file

This commit is contained in:
dec05eba
2024-09-11 01:49:10 +02:00
parent 8746e8e43c
commit 234cc3391e
7 changed files with 136 additions and 26 deletions

View File

@@ -15,6 +15,7 @@ public:
}
// Safe to call when vector is empty
// TODO: Make this iterator safe
void pop_back() {
if(!data.empty())
data.pop_back();
@@ -37,6 +38,7 @@ public:
return &data.back();
}
// TODO: Make this iterator safe
void clear() {
data.clear();
remove_queue.clear();