28 lines
544 B
C++
28 lines
544 B
C++
#pragma once
|
|
#ifndef MESSMER_CPPUTILS_TEMPFILE_TEMPFILE_H_
|
|
#define MESSMER_CPPUTILS_TEMPFILE_TEMPFILE_H_
|
|
|
|
#include <boost/filesystem.hpp>
|
|
#include "../macros.h"
|
|
|
|
namespace cpputils {
|
|
|
|
class TempFile final {
|
|
public:
|
|
explicit TempFile(const boost::filesystem::path &path, bool create = true);
|
|
explicit TempFile(bool create = true);
|
|
~TempFile();
|
|
const boost::filesystem::path &path() const;
|
|
//TODO Test exists()
|
|
bool exists() const;
|
|
|
|
private:
|
|
const boost::filesystem::path _path;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(TempFile);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|