InterpsGroupsReader.hpp
529 Bytes
/*
* File: InterpsGroupsReader.hpp
* Author: mlenart
*
* Created on 16 maj 2014, 12:50
*/
#ifndef INTERPSGROUPSREADER_HPP
#define INTERPSGROUPSREADER_HPP
#include "../InterpsGroup.hpp"
class InterpsGroupsReader {
public:
InterpsGroupsReader();
InterpsGroupsReader(const unsigned char* ptr, long size);
virtual ~InterpsGroupsReader();
bool hasNext() const;
InterpsGroup getNext();
private:
const unsigned char* currPtr;
const unsigned char* endPtr;
};
#endif /* INTERPSGROUPSREADER_HPP */