| 23 | "open file for reading or writing "}; |
| 24 | |
| 25 | FileStream::FileStream() { |
| 26 | #ifdef _WIN32 |
| 27 | handle = INVALID_HANDLE_VALUE; |
| 28 | #endif |
| 29 | } |
| 30 | |
| 31 | FileStream::FileStream(const std::string &filename, OpenMode mode) { |
| 32 | #ifdef _WIN32 |
nothing calls this directly
no test coverage detected