| 363 | } |
| 364 | |
| 365 | int FileStream::read(void* buf, unsigned int size) const |
| 366 | { |
| 367 | assert(_iof); |
| 368 | return _iof->read(_handle, buf, size); |
| 369 | } |
| 370 | |
| 371 | int FileStream::write(const void* buf, unsigned int size) const |
| 372 | { |
no outgoing calls
no test coverage detected