This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <QByteArray> | |
/// Extension of class QByteArray: | |
/// allows cut off a chunk from begining of byte array | |
/// chunk is equivalent quint8, quint16 or quint32 by length | |
class qBA_cutter: public QByteArray | |
{ | |
private: | |
union { | |
quint16 sshort; |
NewerOlder