| 7 | using namespace std; |
| 8 | |
| 9 | TemporaryFile::TemporaryFile() : m_filePath(GetPlatform().TmpPathForFile()) {} |
| 10 | |
| 11 | TemporaryFile::TemporaryFile(std::string const & namePrefix, std::string const & nameSuffix) |
| 12 | : m_filePath(GetPlatform().TmpPathForFile(namePrefix, nameSuffix)) |
nothing calls this directly
no test coverage detected