| 1294 | } |
| 1295 | |
| 1296 | void BinaryInput::seek( sal_Int32 nPos ) |
| 1297 | { |
| 1298 | if( nPos <= m_nSize ) |
| 1299 | m_nCurPos = nPos; |
| 1300 | else |
| 1301 | OSL_FAIL( "BinaryInput::seek(): Position past end" ); |
| 1302 | } |
| 1303 | |
| 1304 | |
| 1305 | sal_Int16 BinaryInput::readInt16() |
no outgoing calls
no test coverage detected