diff options
author | Roland Reichwein <mail@reichwein.it> | 2025-01-17 21:02:51 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2025-01-17 21:02:51 +0100 |
commit | bb56941f6b61529dd770475296d093727c68fdc6 (patch) | |
tree | 065c61ef71a00d0759afcdc0316150db278a7efd /config.h | |
parent | 22ed919b2fffa933c8a72763fda2b603a92a18cf (diff) |
Automatically use correct files path (executable path or /media/usb)
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 13 |
1 files changed, 13 insertions, 0 deletions
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 <string> + +class Config { + public: + Config(int argc, char* argv[]); + std::string get_executable_path(); + std::string get_file_path(); + + private: + std::string m_executable_path; +}; |