diff options
Diffstat (limited to 'src/configure.h')
-rw-r--r-- | src/configure.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/configure.h b/src/configure.h index de1b7e0..a350820 100644 --- a/src/configure.h +++ b/src/configure.h @@ -7,10 +7,12 @@ #include <string> #include <map> +struct Settings; + extern std::filesystem::path configurationFile;; extern std::filesystem::path configHeaderFile; -int configure(int argc, char* argv[]); +int configure(const Settings& settings, int argc, char* argv[]); bool hasConfiguration(const std::string& key); const std::string& getConfiguration(const std::string& key, |