| 101 | } |
| 102 | |
| 103 | int32 BinaryReader::GetBufferPosition() |
| 104 | { |
| 105 | if (m_pReader) |
| 106 | { |
| 107 | return static_cast<int32>(m_pReader->tellg()); |
| 108 | } |
| 109 | |
| 110 | LOG("BinaryReader::GetBufferPosition> m_pReader doesn't exist", Warning); |
| 111 | return -1; |
| 112 | } |
| 113 | |
| 114 | bool BinaryReader::SetBufferPosition(int32 pos) |
| 115 | { |
no outgoing calls
no test coverage detected