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