///////////////////////////////////////////////////////
| 51 | |
| 52 | //////////////////////////////////////////////////////////// |
| 53 | FileInputStream::FileInputStream(const std::filesystem::path& filename) |
| 54 | { |
| 55 | if (!open(filename)) |
| 56 | throw Exception("Failed to open file input stream"); |
| 57 | } |
| 58 | |
| 59 | |
| 60 | //////////////////////////////////////////////////////////// |
nothing calls this directly
no outgoing calls
no test coverage detected