2020-09-13 23:37:55 +01:00
|
|
|
#pragma once
|
2018-09-23 00:47:28 +01:00
|
|
|
#ifndef BLOCKDATA_H
|
|
|
|
#define BLOCKDATA_H
|
|
|
|
|
|
|
|
#include "block.h"
|
|
|
|
|
|
|
|
#include <QByteArray>
|
2019-01-07 18:06:25 +00:00
|
|
|
#include <QVector>
|
2018-09-23 00:47:28 +01:00
|
|
|
|
2021-02-14 20:10:03 +00:00
|
|
|
class Blockdata : public QVector<Block>
|
2018-09-23 00:47:28 +01:00
|
|
|
{
|
|
|
|
public:
|
2021-02-14 21:34:17 +00:00
|
|
|
QByteArray serialize() const;
|
2018-09-23 00:47:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BLOCKDATA_H
|