| 57 | } |
| 58 | |
| 59 | cScriptFileIO::cScriptFileIO(std::string pFilename, bool pRead) { |
| 60 | |
| 61 | mStream.open(pFilename, (pRead == true) ? std::ios::in : std::ios::out); |
| 62 | } |
| 63 | |
| 64 | cScriptFileIO::~cScriptFileIO() { |
| 65 |
nothing calls this directly
no outgoing calls
no test coverage detected