summaryrefslogtreecommitdiffhomepage
path: root/tempfile.h
blob: 8bbda315ad94591e8d8aef2af8d0fde857bf3ba7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma once

#include <filesystem>

#define EXPORT __attribute__((visibility("default")))

namespace Reichwein {

// removing path, recursively, via RAII
class EXPORT 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();
};

} // namespace