You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
falk-werner_webfuse/test-src/webfuse/test/tempdir.hpp

23 lines
234 B

#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