mirror of
https://github.com/markdavidlong/AppleSAWS.git
synced 2024-10-06 11:54:33 +00:00
20 lines
351 B
C++
20 lines
351 B
C++
#ifndef BINARYFILE_H
|
|
#define BINARYFILE_H
|
|
|
|
#include "genericfile.h"
|
|
|
|
class BinaryFile : public GenericFile
|
|
{
|
|
public:
|
|
BinaryFile(QByteArray data = QByteArray());
|
|
void setData(QByteArray data) override;
|
|
|
|
virtual quint16 length() const override { return m_length; }
|
|
|
|
void dump();
|
|
|
|
protected:
|
|
};
|
|
|
|
#endif // BINARYFILE_H
|