// Read BLKs! #ifndef BLKREADER_H #define BLKREADER_H #include #include "endianlove.h" class BLKImageHandler : public QImageIOHandler { public: BLKImageHandler(); QByteArray name() const; bool canRead() const; bool read(QImage *image); static bool canRead(QIODevice *device); }; #endif // BLKREADER_H