summaryrefslogtreecommitdiffhomepage
path: root/libcommon/tempfile.h
blob: 5938fb9ba973c6737237a9290315339556ae1632 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include <filesystem>

class Tempfile
{
 std::filesystem::path m_path;

 public:
  std::filesystem::path GetPath() const;

  Tempfile();
  ~Tempfile();
 };