From 5da56616cccf4e595ec6a556cf1aef40b37746e3 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Sat, 28 Aug 2021 18:59:29 +0200 Subject: Move sources to ... well, src ;) --- src/configure.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/configure.h (limited to 'src/configure.h') diff --git a/src/configure.h b/src/configure.h new file mode 100644 index 0000000..95b6765 --- /dev/null +++ b/src/configure.h @@ -0,0 +1,19 @@ +// -*- c++ -*- +#pragma once + +#include +#include +#include + +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& configuration(); + +extern const std::map default_configuration; -- cgit v1.2.3