diff options
author | Roland Reichwein <mail@reichwein.it> | 2023-01-03 09:31:51 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2023-01-03 09:31:51 +0100 |
commit | 2b6f8123e925e3be8ce7c04eccdd49fc728314a5 (patch) | |
tree | 78e86bb428b3bc821ae84d0f6abe86136356bd1a /libcommon/tempfile.h | |
parent | 5581340f23b31114d33736c630de849898668f38 (diff) |
Separated out libcommon as libreichwein
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(); - }; - - |