1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-10-01 04:50:45 +00:00
falk-werner_webfuse-provider/test/tempdir.hpp
2020-02-16 14:47:21 +01:00

22 lines
313 B
C++

#ifndef WF_TEST_TEMPDIR_HPP
#define WF_TEST_TEMPDIR_HPP
namespace webfuse_test
{
class TempDir
{
TempDir(TempDir const &) = delete;
TempDir & operator=(TempDir const &) = delete;
public:
TempDir(char const * prefix);
~TempDir();
char const * path();
private:
char * path_;
};
}
#endif