1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-09-29 06:50:43 +00:00
falk-werner_webfuse/test-src/integration/webfuse/test/tempdir.hpp
2023-01-01 13:01:35 +01:00

23 lines
236 B
C++

#ifndef WEBFUSE_TEMPDIR_HPP
#define WEBFUSE_TEMPDIR_HPP
#include <string>
namespace webfuse
{
class tempdir
{
public:
tempdir();
~tempdir();
std::string const & name() const;
private:
std::string path;
};
}
#endif