#ifndef READBYTES_H
#define READBYTES_H

#include <QObject>

class TestReadBytes : public QObject
{
Q_OBJECT
public:
	TestReadBytes() {;}
	~TestReadBytes() {;}
	
private slots:
	void testReadPageType();
	void testReadVersion();
	void testReadBoundingBox();
	void testReadPolyline();
	void testReadCordinate();
	void testIdBytes();
};

#endif
