* Added filepath implementation in BinaryReader

This commit is contained in:
Phillip Stephens 2014-04-29 19:29:51 -07:00
parent da7781f78e
commit c0974d511a
1 changed files with 10 additions and 0 deletions

View File

@ -149,6 +149,16 @@ Uint8* BinaryReader::data() const
return ret;
}
void BinaryReader::setFilepath(const std::string& filepath)
{
m_filepath = filepath;
}
std::string BinaryReader::filepath() const
{
return m_filepath;
}
void BinaryReader::seekBit(int bit)
{
if (!m_data)