| 907 | CSizeComputer(int nTypeIn, int nVersionIn) : nSize(0), nType(nTypeIn), nVersion(nVersionIn) {} |
| 908 | |
| 909 | void write(const char *psz, size_t _nSize) |
| 910 | { |
| 911 | this->nSize += _nSize; |
| 912 | } |
| 913 | |
| 914 | /** Pretend _nSize bytes are written, without specifying them. */ |
| 915 | void seek(size_t _nSize) |
no outgoing calls
no test coverage detected