libcryfs/tempfile/TempDir.h
2015-04-25 02:40:02 +02:00

25 lines
371 B
C++

#pragma once
#ifndef MESSMER_TEMPFILE_TEMPDIR_H_
#define MESSMER_TEMPFILE_TEMPDIR_H_
#include <boost/filesystem.hpp>
#include "../macros.h"
namespace cpputils {
class TempDir {
public:
TempDir();
virtual ~TempDir();
const boost::filesystem::path &path() const;
private:
const boost::filesystem::path _path;
DISALLOW_COPY_AND_ASSIGN(TempDir);
};
}
#endif