1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-10-27 20:34:10 +00:00
falk-werner_webfuse/test-src/webfuse/test/tempdir.hpp

23 lines
236 B
C++
Raw Normal View History

2022-12-30 18:43:45 +00:00
#ifndef WEBFUSE_TEMPDIR_HPP
#define WEBFUSE_TEMPDIR_HPP
#include <string>
namespace webfuse
{
class tempdir
{
public:
tempdir();
~tempdir();
2022-12-31 19:41:45 +00:00
std::string const & name() const;
2022-12-30 18:43:45 +00:00
private:
std::string path;
};
}
#endif