| 62 | //File |
| 63 | struct SQFile : public SQStream { |
| 64 | SQFile() { _handle = NULL; _owns = false;} |
| 65 | SQFile(SQFILE file, bool owns) { _handle = file; _owns = owns;} |
| 66 | virtual ~SQFile() { Close(); } |
| 67 | bool Open(const SQChar *filename ,const SQChar *mode) { |
nothing calls this directly
no outgoing calls
no test coverage detected