mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
22 lines
313 B
C++
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
|