| 61 | virtual size_t tell() { return (0 != hf) ? ftell(hf) : 0; }; |
| 62 | virtual bool valid() { return (0 != hf); } |
| 63 | virtual size_t flush() { return fflush(hf); } |
| 64 | }; |
| 65 | |
| 66 | // It automatically frees memory after destruction |
no outgoing calls
no test coverage detected