2015-03-01 20:42:39 +00:00
|
|
|
#ifndef ISTREAMREADER_HPP
|
|
|
|
#define ISTREAMREADER_HPP
|
|
|
|
|
2015-07-08 02:53:39 +00:00
|
|
|
#include <locale>
|
|
|
|
#include <codecvt>
|
2015-08-08 23:25:18 +00:00
|
|
|
#include <functional>
|
2015-03-01 20:42:39 +00:00
|
|
|
#include "IStream.hpp"
|
|
|
|
|
|
|
|
namespace Athena
|
|
|
|
{
|
|
|
|
namespace io
|
|
|
|
{
|
|
|
|
class IStreamReader : public IStream
|
|
|
|
{
|
|
|
|
public:
|
2015-03-01 21:22:59 +00:00
|
|
|
virtual ~IStreamReader() {}
|
2015-07-08 02:53:39 +00:00
|
|
|
|
2015-07-14 00:39:51 +00:00
|
|
|
/*! \brief Sets the Endianness of the stream
|
2015-07-08 02:53:39 +00:00
|
|
|
*
|
2015-07-14 00:39:51 +00:00
|
|
|
* \param endian The Endianness to set \sa Endian
|
2015-07-08 02:53:39 +00:00
|
|
|
*/
|
|
|
|
inline void setEndian(Endian endian)
|
|
|
|
{m_endian = endian;}
|
|
|
|
|
|
|
|
/*! \brief Returns the current Endianness of the stream
|
|
|
|
*
|
2015-07-14 00:39:51 +00:00
|
|
|
* \return Endian The current Stream Endianness
|
2015-07-08 02:53:39 +00:00
|
|
|
*/
|
|
|
|
inline Endian endian() const
|
|
|
|
{return m_endian;}
|
|
|
|
|
|
|
|
/*! \brief Returns whether the stream is BigEndian
|
|
|
|
*
|
|
|
|
* \return bool True for BigEndian; False for LittleEndian
|
|
|
|
*/
|
|
|
|
inline bool isBigEndian() const
|
|
|
|
{return (m_endian == Endian::BigEndian);}
|
|
|
|
|
|
|
|
/*! \brief Returns whether the stream is LittleEndian
|
|
|
|
*
|
|
|
|
* \return bool True for LittleEndian; False for BigEndian
|
|
|
|
*/
|
|
|
|
inline bool isLittleEndian()const
|
|
|
|
{return (m_endian == Endian::LittleEndian);}
|
|
|
|
|
|
|
|
|
|
|
|
/*! \brief Sets the buffers position relative to the specified position.<br />
|
|
|
|
* It seeks relative to the current position by default.
|
|
|
|
* \param position where in the buffer to seek
|
|
|
|
* \param origin The Origin to seek \sa SeekOrigin
|
|
|
|
*/
|
|
|
|
virtual void seek(atInt64 pos, SeekOrigin origin = SeekOrigin::Current)=0;
|
|
|
|
|
|
|
|
/*! \brief Sets the buffers position relative to the next 32-byte aligned position.<br />
|
|
|
|
*/
|
|
|
|
inline void seekAlign32() {seek(ROUND_UP_32(position()), SeekOrigin::Begin);}
|
|
|
|
|
|
|
|
/*! \brief Returns whether or not the stream is at the end.
|
|
|
|
*
|
|
|
|
* \return bool True if at end; False otherwise.
|
|
|
|
*/
|
|
|
|
inline bool atEnd() const
|
|
|
|
{return position() >= length();}
|
|
|
|
|
|
|
|
/*! \brief Returns the current position in the stream.
|
|
|
|
*
|
|
|
|
* \return Int64 The current position in the stream.
|
|
|
|
*/
|
|
|
|
virtual atUint64 position() const=0;
|
|
|
|
|
|
|
|
/*! \brief Returns whether or not the stream is at the end.
|
|
|
|
*
|
|
|
|
* \return bool True if at end; False otherwise.
|
|
|
|
*/
|
|
|
|
virtual atUint64 length() const=0;
|
|
|
|
|
|
|
|
/*! \brief Reads a byte at the current position and advances the current position
|
|
|
|
*
|
|
|
|
* \return Int8 The value at the current position
|
|
|
|
*/
|
|
|
|
inline atInt8 readByte() {atInt8 val; readUBytesToBuf(&val, 1); return val;}
|
2015-08-08 23:25:18 +00:00
|
|
|
template <class T>
|
|
|
|
inline atInt8 readVal(typename std::enable_if<std::is_same<T, atInt8>::value>::type* = 0)
|
|
|
|
{return readByte();}
|
2015-07-08 02:53:39 +00:00
|
|
|
|
|
|
|
/*! \brief Reads a byte at the current position and advances the current position
|
|
|
|
*
|
|
|
|
* \return Uint8 The value at the current position
|
|
|
|
*/
|
|
|
|
inline atUint8 readUByte() {return readByte();}
|
2015-08-08 23:25:18 +00:00
|
|
|
template <class T>
|
|
|
|
inline atUint8 readVal(typename std::enable_if<std::is_same<T, atUint8>::value>::type* = 0)
|
|
|
|
{return readUByte();}
|
2015-07-08 02:53:39 +00:00
|
|
|
|
|
|
|
/*! \brief Reads a byte at the current position and advances the current position.
|
|
|
|
*
|
|
|
|
* \return Uint8* The buffer at the current position from the given length.
|
|
|
|
*/
|
2015-08-05 22:20:15 +00:00
|
|
|
inline std::unique_ptr<atInt8[]> readBytes(atUint64 length)
|
|
|
|
{
|
|
|
|
atInt8* buf = new atInt8[length];
|
|
|
|
readUBytesToBuf(buf, length);
|
|
|
|
return std::unique_ptr<atInt8[]>(buf);
|
|
|
|
}
|
2015-07-08 02:53:39 +00:00
|
|
|
|
|
|
|
/*! \brief Reads a byte at the current position and advances the current position.
|
|
|
|
*
|
|
|
|
* \return Int8* The buffer at the current position from the given length.
|
|
|
|
*/
|
2015-08-05 22:20:15 +00:00
|
|
|
inline std::unique_ptr<atUint8[]> readUBytes(atUint64 length)
|
|
|
|
{
|
|
|
|
atUint8* buf = new atUint8[length];
|
|
|
|
readUBytesToBuf(buf, length);
|
|
|
|
return std::unique_ptr<atUint8[]>(buf);
|
|
|
|
}
|
2015-07-08 02:53:39 +00:00
|
|
|
|
|
|
|
inline atUint64 readBytesToBuf(void* buf, atUint64 len) {return readUBytesToBuf(buf, len);}
|
|
|
|
virtual atUint64 readUBytesToBuf(void* buf, atUint64 len)=0;
|
|
|
|
|
|
|
|
/*! \brief Reads a Int16 and swaps to proper endianness depending on platform
|
|
|
|
* and Stream settings, and advances the current position
|
|
|
|
*
|
|
|
|
* \sa Endian
|
|
|
|
*
|
|
|
|
* \return Int16 The value at the current address
|
|
|
|
* \throw IOException when address is out of range
|
|
|
|
*/
|
|
|
|
inline atInt16 readInt16()
|
|
|
|
{
|
|
|
|
atInt16 val;
|
|
|
|
readUBytesToBuf(&val, 2);
|
|
|
|
return m_endian == BigEndian ? utility::BigInt16(val) : utility::LittleInt16(val);
|
|
|
|
}
|
2015-08-08 23:25:18 +00:00
|
|
|
template <class T>
|
|
|
|
inline atInt16 readVal(typename std::enable_if<std::is_same<T, atInt16>::value>::type* = 0)
|
|
|
|
{return readInt16();}
|
2015-07-08 02:53:39 +00:00
|
|
|
|
|
|
|
/*! \brief Reads a Uint16 and swaps to proper endianness depending on platform
|
|
|
|
* and Stream settings, and advances the current position
|
|
|
|
*
|
|
|
|
* \sa Endian
|
|
|
|
*
|
|
|
|
* \return Uint16 The value at the current address
|
|
|
|
* \throw IOException when address is out of range
|
|
|
|
*/
|
|
|
|
inline atUint16 readUint16()
|
|
|
|
{return readInt16();}
|
2015-08-08 23:25:18 +00:00
|
|
|
template <class T>
|
|
|
|
inline atUint16 readVal(typename std::enable_if<std::is_same<T, atUint16>::value>::type* = 0)
|
|
|
|
{return readUint16();}
|
2015-07-08 02:53:39 +00:00
|
|
|
|
|
|
|
/*! \brief Reads a Int32 and swaps to proper endianness depending on platform
|
|
|
|
* and Stream settings, and advances the current position
|
|
|
|
*
|
|
|
|
* \sa Endian
|
|
|
|
*
|
|
|
|
* \return Int32 The value at the current address
|
|
|
|
* \throw IOException when address is out of range
|
|
|
|
*/
|
|
|
|
inline atInt32 readInt32()
|
|
|
|
{
|
|
|
|
atInt32 val;
|
|
|
|
readUBytesToBuf(&val, 4);
|
|
|
|
return m_endian == BigEndian ? utility::BigInt32(val) : utility::LittleInt32(val);
|
|
|
|
}
|
2015-08-08 23:25:18 +00:00
|
|
|
template <class T>
|
|
|
|
inline atInt32 readVal(typename std::enable_if<std::is_same<T, atInt32>::value>::type* = 0)
|
|
|
|
{return readInt32();}
|
2015-07-08 02:53:39 +00:00
|
|
|
|
|
|
|
/*! \brief Reads a Uint32 and swaps to proper endianness depending on platform
|
|
|
|
* and Stream settings, and advances the current position
|
|
|
|
*
|
|
|
|
* \sa Endian
|
|
|
|
*
|
|
|
|
* \return Uint32 The value at the current address
|
|
|
|
* \throw IOException when address is out of range
|
|
|
|
*/
|
|
|
|
inline atUint32 readUint32()
|
|
|
|
{return readInt32();}
|
2015-08-08 23:25:18 +00:00
|
|
|
template <class T>
|
|
|
|
inline atUint32 readVal(typename std::enable_if<std::is_same<T, atUint32>::value>::type* = 0)
|
|
|
|
{return readUint32();}
|
2015-07-08 02:53:39 +00:00
|
|
|
|
|
|
|
/*! \brief Reads a Int64 and swaps to proper endianness depending on platform
|
|
|
|
* and Stream settings, and advances the current position
|
|
|
|
*
|
|
|
|
* \sa Endian
|
|
|
|
*
|
|
|
|
* \return Int64 The value at the current address
|
|
|
|
* \throw IOException when address is out of range
|
|
|
|
*/
|
|
|
|
inline atInt64 readInt64()
|
|
|
|
{
|
|
|
|
atInt64 val;
|
|
|
|
readUBytesToBuf(&val, 8);
|
|
|
|
return m_endian == BigEndian ? utility::BigInt64(val) : utility::LittleInt64(val);
|
|
|
|
}
|
2015-08-08 23:25:18 +00:00
|
|
|
template <class T>
|
|
|
|
inline atInt64 readVal(typename std::enable_if<std::is_same<T, atInt64>::value>::type* = 0)
|
|
|
|
{return readInt64();}
|
2015-07-08 02:53:39 +00:00
|
|
|
|
|
|
|
/*! \brief Reads a Uint64 and swaps to proper endianness depending on platform
|
|
|
|
* and Stream settings, and advances the current position
|
|
|
|
*
|
|
|
|
* \sa Endian
|
|
|
|
*
|
|
|
|
* \return Uint64 The value at the current address
|
|
|
|
* \throw IOException when address is out of range
|
|
|
|
*/
|
|
|
|
inline atUint64 readUint64()
|
|
|
|
{return readInt64();}
|
2015-08-08 23:25:18 +00:00
|
|
|
template <class T>
|
|
|
|
inline atUint64 readVal(typename std::enable_if<std::is_same<T, atUint64>::value>::type* = 0)
|
|
|
|
{return readUint64();}
|
2015-07-08 02:53:39 +00:00
|
|
|
|
|
|
|
/*! \brief Reads a float and swaps to proper endianness depending on platform
|
|
|
|
* and Stream settings, and advances the current position
|
|
|
|
*
|
|
|
|
* \sa Endian
|
|
|
|
*
|
|
|
|
* \return float The value at the current address
|
|
|
|
* \throw IOException when address is out of range
|
|
|
|
*/
|
|
|
|
inline float readFloat()
|
|
|
|
{
|
|
|
|
float val;
|
|
|
|
readUBytesToBuf(&val, 4);
|
|
|
|
return m_endian == BigEndian ? utility::BigFloat(val) : utility::LittleFloat(val);
|
|
|
|
}
|
2015-08-08 23:25:18 +00:00
|
|
|
template <class T>
|
|
|
|
inline float readVal(typename std::enable_if<std::is_same<T, float>::value>::type* = 0)
|
|
|
|
{return readFloat();}
|
2015-07-08 02:53:39 +00:00
|
|
|
|
|
|
|
/*! \brief Reads a double and swaps to proper endianness depending on platform
|
|
|
|
* and Stream settings, and advances the current position
|
|
|
|
*
|
|
|
|
* \sa Endian
|
|
|
|
*
|
|
|
|
* \return double The value at the current address
|
|
|
|
* \throw IOException when address is out of range
|
|
|
|
*/
|
|
|
|
inline double readDouble()
|
|
|
|
{
|
|
|
|
double val;
|
|
|
|
readUBytesToBuf(&val, 8);
|
|
|
|
return m_endian == BigEndian ? utility::BigDouble(val) : utility::LittleDouble(val);
|
|
|
|
}
|
2015-08-08 23:25:18 +00:00
|
|
|
template <class T>
|
|
|
|
inline double readVal(typename std::enable_if<std::is_same<T, double>::value>::type* = 0)
|
|
|
|
{return readDouble();}
|
2015-07-08 02:53:39 +00:00
|
|
|
|
|
|
|
/*! \brief Reads a bool and advances the current position
|
|
|
|
*
|
|
|
|
* \return bool The value at the current address
|
|
|
|
* \throw IOException when address is out of range
|
|
|
|
*/
|
|
|
|
inline bool readBool()
|
|
|
|
{
|
|
|
|
atUint8 val;
|
|
|
|
readUBytesToBuf(&val, 1);
|
|
|
|
return val != 0;
|
|
|
|
}
|
2015-08-08 23:25:18 +00:00
|
|
|
template <class T>
|
|
|
|
inline bool readVal(typename std::enable_if<std::is_same<T, bool>::value>::type* = 0)
|
|
|
|
{return readBool();}
|
2015-07-08 02:53:39 +00:00
|
|
|
|
2015-07-11 01:45:26 +00:00
|
|
|
/*! \brief Reads an atVec2f (8 bytes) and advances the current position
|
|
|
|
*
|
|
|
|
* \return atVec2f The value at the current address
|
|
|
|
* \throw IOException when address is out of range
|
|
|
|
*/
|
2015-07-10 23:44:31 +00:00
|
|
|
inline atVec2f readVec2f()
|
2015-07-11 01:45:26 +00:00
|
|
|
{
|
|
|
|
atVec2f val;
|
|
|
|
readUBytesToBuf(&val, 8);
|
|
|
|
if (m_endian == BigEndian)
|
|
|
|
{
|
|
|
|
utility::BigFloat(val.vec[0]);
|
|
|
|
utility::BigFloat(val.vec[1]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
utility::LittleFloat(val.vec[0]);
|
|
|
|
utility::LittleFloat(val.vec[1]);
|
|
|
|
}
|
|
|
|
return val;
|
|
|
|
}
|
2015-08-08 23:25:18 +00:00
|
|
|
template <class T>
|
|
|
|
inline atVec2f readVal(typename std::enable_if<std::is_same<T, atVec2f>::value>::type* = 0)
|
|
|
|
{return readVec2f();}
|
2015-07-11 01:45:26 +00:00
|
|
|
|
2015-07-08 02:53:39 +00:00
|
|
|
/*! \brief Reads an atVec3f (12 bytes) and advances the current position
|
|
|
|
*
|
|
|
|
* \return atVec3f The value at the current address
|
|
|
|
* \throw IOException when address is out of range
|
|
|
|
*/
|
|
|
|
inline atVec3f readVec3f()
|
|
|
|
{
|
|
|
|
atVec3f val;
|
|
|
|
readUBytesToBuf(&val, 12);
|
|
|
|
if (m_endian == BigEndian)
|
|
|
|
{
|
|
|
|
utility::BigFloat(val.vec[0]);
|
|
|
|
utility::BigFloat(val.vec[1]);
|
|
|
|
utility::BigFloat(val.vec[2]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
utility::LittleFloat(val.vec[0]);
|
|
|
|
utility::LittleFloat(val.vec[1]);
|
|
|
|
utility::LittleFloat(val.vec[2]);
|
|
|
|
}
|
|
|
|
return val;
|
|
|
|
}
|
2015-08-08 23:25:18 +00:00
|
|
|
template <class T>
|
|
|
|
inline atVec3f readVal(typename std::enable_if<std::is_same<T, atVec3f>::value>::type* = 0)
|
|
|
|
{return readVec3f();}
|
2015-07-08 02:53:39 +00:00
|
|
|
|
|
|
|
/*! \brief Reads an atVec4f (16 bytes) and advances the current position
|
|
|
|
*
|
|
|
|
* \return atVec4f The value at the current address
|
|
|
|
* \throw IOException when address is out of range
|
|
|
|
*/
|
|
|
|
inline atVec4f readVec4f()
|
|
|
|
{
|
|
|
|
atVec4f val;
|
|
|
|
readUBytesToBuf(&val, 16);
|
|
|
|
if (m_endian == BigEndian)
|
|
|
|
{
|
|
|
|
utility::BigFloat(val.vec[0]);
|
|
|
|
utility::BigFloat(val.vec[1]);
|
|
|
|
utility::BigFloat(val.vec[2]);
|
|
|
|
utility::BigFloat(val.vec[3]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
utility::LittleFloat(val.vec[0]);
|
|
|
|
utility::LittleFloat(val.vec[1]);
|
|
|
|
utility::LittleFloat(val.vec[2]);
|
|
|
|
utility::LittleFloat(val.vec[3]);
|
|
|
|
}
|
|
|
|
return val;
|
|
|
|
}
|
2015-08-08 23:25:18 +00:00
|
|
|
template <class T>
|
|
|
|
inline atVec4f readVal(typename std::enable_if<std::is_same<T, atVec4f>::value>::type* = 0)
|
|
|
|
{return readVec4f();}
|
2015-07-08 02:53:39 +00:00
|
|
|
|
2015-07-21 19:04:25 +00:00
|
|
|
/*! \brief Reads a wide-char string, converts to UTF8 and advances the position in the file
|
2015-07-08 02:53:39 +00:00
|
|
|
*
|
|
|
|
* \param fixedLen If non-negative, this is a fixed-length string read
|
|
|
|
* \return std::string The value at the current address
|
|
|
|
* \throw IOException when address is out of range
|
|
|
|
*/
|
2015-07-21 19:04:25 +00:00
|
|
|
inline std::string readWStringAsString(atInt32 fixedLen = -1)
|
2015-07-08 02:53:39 +00:00
|
|
|
{
|
|
|
|
std::wstring tmp;
|
|
|
|
atUint16 chr = readUint16();
|
|
|
|
|
|
|
|
atInt32 i;
|
|
|
|
for (i = 0 ;; ++i)
|
|
|
|
{
|
|
|
|
if (fixedLen >= 0 && i >= fixedLen - 1)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (!chr)
|
|
|
|
break;
|
|
|
|
|
|
|
|
tmp.push_back(chr);
|
|
|
|
chr = readUint16();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fixedLen >= 0 && i < fixedLen)
|
|
|
|
seek(fixedLen - i);
|
|
|
|
|
|
|
|
std::wstring_convert<std::codecvt_utf8<wchar_t>> conv;
|
|
|
|
return conv.to_bytes(tmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*! \brief Reads a string and advances the position in the file
|
|
|
|
*
|
|
|
|
* \param fixedLen If non-negative, this is a fixed-length string read
|
|
|
|
* \return std::string The value at the current address
|
|
|
|
* \throw IOException when address is out of range
|
|
|
|
*/
|
|
|
|
inline std::string readString(atInt32 fixedLen = -1)
|
|
|
|
{
|
|
|
|
std::string ret;
|
|
|
|
atUint8 chr = readByte();
|
|
|
|
|
|
|
|
atInt32 i;
|
|
|
|
for (i = 1 ; chr != 0 ; ++i)
|
|
|
|
{
|
|
|
|
ret += chr;
|
|
|
|
|
|
|
|
if (fixedLen >= 0 && i >= fixedLen)
|
|
|
|
break;
|
|
|
|
|
|
|
|
chr = readByte();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fixedLen >= 0 && i < fixedLen)
|
|
|
|
seek(fixedLen - i);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2015-08-08 23:25:18 +00:00
|
|
|
template <class T>
|
|
|
|
inline std::string readVal(typename std::enable_if<std::is_same<T, std::string>::value>::type* = 0)
|
|
|
|
{return readString();}
|
2015-07-08 02:53:39 +00:00
|
|
|
|
|
|
|
/*! \brief Reads a wstring and advances the position in the file
|
|
|
|
*
|
|
|
|
* \param fixedLen If non-negative, this is a fixed-length string read
|
|
|
|
* \return std::wstring The value at the current address
|
|
|
|
* \throw IOException when address is out of range
|
|
|
|
*/
|
|
|
|
inline std::wstring readWString(atInt32 fixedLen = -1)
|
|
|
|
{
|
|
|
|
std::wstring ret;
|
|
|
|
atUint16 chr = readUint16();
|
|
|
|
|
|
|
|
atInt32 i;
|
|
|
|
for (i = 1 ; chr != 0 ; ++i)
|
|
|
|
{
|
|
|
|
ret += chr;
|
|
|
|
|
|
|
|
if (fixedLen >= 0 && i >= fixedLen)
|
|
|
|
break;
|
|
|
|
|
|
|
|
chr = readUint16();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fixedLen >= 0 && i < fixedLen)
|
|
|
|
seek(fixedLen - i);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2015-08-08 23:25:18 +00:00
|
|
|
template <class T>
|
|
|
|
inline std::wstring readVal(typename std::enable_if<std::is_same<T, std::wstring>::value>::type* = 0)
|
|
|
|
{return readWString();}
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
void enumerate(std::vector<T>& vector, size_t count,
|
|
|
|
typename std::enable_if<std::is_arithmetic<T>::value ||
|
|
|
|
std::is_same<T, atVec2f>::value ||
|
|
|
|
std::is_same<T, atVec3f>::value ||
|
|
|
|
std::is_same<T, atVec4f>::value>::type* = 0)
|
|
|
|
{
|
|
|
|
vector.clear();
|
|
|
|
vector.reserve(count);
|
|
|
|
for (int i=0 ; i<count ; ++i)
|
|
|
|
vector.emplace_back(readVal<T>());
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
void enumerate(std::vector<T>& vector, size_t count,
|
|
|
|
typename std::enable_if<!std::is_arithmetic<T>::value &&
|
|
|
|
!std::is_same<T, atVec2f>::value &&
|
|
|
|
!std::is_same<T, atVec3f>::value &&
|
|
|
|
!std::is_same<T, atVec4f>::value>::type* = 0)
|
|
|
|
{
|
|
|
|
vector.clear();
|
|
|
|
vector.reserve(count);
|
|
|
|
for (int i=0 ; i<count ; ++i)
|
|
|
|
{
|
|
|
|
vector.emplace_back();
|
|
|
|
vector.back().read(*this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
void enumerate(std::vector<T>& vector, size_t count, std::function<void(IStreamReader&, T&)> readf)
|
|
|
|
{
|
|
|
|
vector.clear();
|
|
|
|
vector.reserve(count);
|
|
|
|
for (int i=0 ; i<count ; ++i)
|
|
|
|
{
|
|
|
|
vector.emplace_back();
|
|
|
|
readf(*this, vector.back());
|
|
|
|
}
|
|
|
|
}
|
2015-07-08 02:53:39 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
Endian m_endian;
|
2015-03-01 20:42:39 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // ISTREAMREADER
|
|
|
|
|