diff options
Diffstat (limited to 'libcommon/tempfile.h')
-rw-r--r-- | libcommon/tempfile.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/libcommon/tempfile.h b/libcommon/tempfile.h deleted file mode 100644 index b9839a7..0000000 --- a/libcommon/tempfile.h +++ /dev/null @@ -1,17 +0,0 @@ -#pragma once - -#include <filesystem> - -class Tempfile -{ - std::filesystem::path m_path; - - public: - std::filesystem::path GetPath() const; - - // extension: e.g. ".zip" - Tempfile(const std::filesystem::path& extension = std::filesystem::path{}); - ~Tempfile(); - }; - - |