Home | History | Annotate | Download | only in tmpfile

Lines Matching full:tmpfile

46 class TmpFile
49 TmpFile(std::string content) : mPath(mktmp())
58 TmpFile(TmpFile &&right) : mPath(std::move(right.mPath)) { right.mPath.clear(); }
62 TmpFile(const TmpFile &right) = delete;
63 TmpFile &operator=(const TmpFile &right) = delete;
66 TmpFile &operator=(TmpFile &&right)
74 ~TmpFile() { remove(); }
98 throwErrnoError("Could not delete tmpfile");