mirror of
https://github.com/markdavidlong/AppleSAWS.git
synced 2026-03-13 11:41:35 +00:00
17 lines
368 B
C++
17 lines
368 B
C++
#pragma once
|
|
|
|
#include "GenericFile.h"
|
|
|
|
|
|
class IntBasicFile : public GenericFile
|
|
{
|
|
public:
|
|
explicit IntBasicFile(const QByteArray& data = QByteArray());
|
|
|
|
[[nodiscard]] QByteArray detokenize();
|
|
private:
|
|
[[nodiscard]] quint16 get16(quint8 v1, quint8 v2);
|
|
[[nodiscard]] QByteArray dumpBufferAsIntBasicFile(const QByteArray& origdata);
|
|
};
|
|
|