| 131 | } |
| 132 | |
| 133 | StreamOffset File::pos() { |
| 134 | if (!m_file) |
| 135 | throw IOException("pos called on closed File"); |
| 136 | |
| 137 | return ftell(m_file); |
| 138 | } |
| 139 | |
| 140 | void File::seek(StreamOffset offset, IOSeek seekMode) { |
| 141 | if (!m_file) |
no outgoing calls
no test coverage detected