mirror of
https://github.com/markdavidlong/AppleSAWS.git
synced 2026-03-14 18:16:42 +00:00
17 lines
303 B
C++
17 lines
303 B
C++
#pragma once
|
|
|
|
#include "GenericFile.h"
|
|
|
|
|
|
class IntBasicFile : public GenericFile
|
|
{
|
|
public:
|
|
IntBasicFile(QByteArray data = QByteArray());
|
|
|
|
QByteArray detokenize();
|
|
private:
|
|
quint16 get16(quint8 v1, quint8 v2);
|
|
QByteArray dumpBufferAsIntBasicFile(QByteArray origdata);
|
|
};
|
|
|