Home | History | Annotate | Download | only in tmpfile

Lines Matching refs:mPath

49     TmpFile(std::string content) : mPath(mktmp())
51 std::ofstream file(mPath);
58 TmpFile(TmpFile &&right) : mPath(std::move(right.mPath)) { right.mPath.clear(); }
69 mPath = std::move(right.mPath);
70 right.mPath.clear();
79 const std::string &getPath() const { return mPath; }
96 if (not mPath.empty()) {
97 if (std::remove(mPath.c_str()) != 0) {
102 std::string mPath;