3 template <
typename Iter>
4 bool RawReader::read_into(Iter begin, Iter end) {
5 for(
auto it = begin; it != end; ++it) {
6 if (!this->read_into(&(*it))) {
return false; }
12 bool RawReader::read_into(T* ptr) {
15 char* raw =
reinterpret_cast<char*
>(ptr);
16 for (
size_t j = 0; j <
sizeof(T); ++j) {
17 m_is->read(raw +
sizeof(T)-j-1, 1);
18 if (m_is->gcount() == 0)
return false;
23 m_is->read(reinterpret_cast<char*>(ptr),
sizeof(T));
24 if ((
unsigned)m_is->gcount() <
sizeof(T))
return false;