From bb56941f6b61529dd770475296d093727c68fdc6 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Fri, 17 Jan 2025 21:02:51 +0100 Subject: Automatically use correct files path (executable path or /media/usb) --- config.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 config.h (limited to 'config.h') diff --git a/config.h b/config.h new file mode 100644 index 0000000..d0520dd --- /dev/null +++ b/config.h @@ -0,0 +1,13 @@ +#pragma once + +#include + +class Config { + public: + Config(int argc, char* argv[]); + std::string get_executable_path(); + std::string get_file_path(); + + private: + std::string m_executable_path; +}; -- cgit v1.2.3