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