summaryrefslogtreecommitdiff
path: root/configure.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2021-08-28 18:59:29 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2021-08-28 18:59:29 +0200
commit5da56616cccf4e595ec6a556cf1aef40b37746e3 (patch)
tree8142e294a251ca2ab1697f7541fe67dfd31622e0 /configure.h
parent0597cb9854d66d918762ff167148516b69c02e9a (diff)
Move sources to ... well, src ;)
Diffstat (limited to 'configure.h')
-rw-r--r--configure.h19
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;