| 112 | } |
| 113 | |
| 114 | bool BinaryReader::SetBufferPosition(int32 pos) |
| 115 | { |
| 116 | if (m_pReader) |
| 117 | { |
| 118 | m_pReader->seekg(pos); |
| 119 | return true; |
| 120 | } |
| 121 | |
| 122 | LOG("BinaryReader::SetBufferPosition> m_pReader doesn't exist", Warning); |
| 123 | return false; |
| 124 | } |
| 125 | |
| 126 | bool BinaryReader::MoveBufferPosition(int32 move) |
| 127 | { |
no outgoing calls
no test coverage detected