diff options
Diffstat (limited to 'configure.h')
-rw-r--r-- | configure.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/configure.h b/configure.h deleted file mode 100644 index 95b6765..0000000 --- a/configure.h +++ /dev/null @@ -1,19 +0,0 @@ -// -*- c++ -*- -#pragma once - -#include <filesystem> -#include <string> -#include <map> - -extern std::filesystem::path configurationFile;; -extern std::filesystem::path configHeaderFile; - -int configure(int argc, char* argv[]); - -bool hasConfiguration(const std::string& key); -const std::string& getConfiguration(const std::string& key, - const std::string& defaultValue); - -const std::map<std::string, std::string>& configuration(); - -extern const std::map<std::string, std::string> default_configuration; |