Move project in sub
This commit is contained in:
parent
f868166756
commit
ec1af1b8e5
43 changed files with 358 additions and 2 deletions
|
|
@ -1,30 +0,0 @@
|
|||
#ifndef DPOINT_ENTITY_H
|
||||
#define DPOINT_ENTITY_H
|
||||
|
||||
#include "IEntity.h"
|
||||
#include "storage_entity.h"
|
||||
|
||||
#include <QString>
|
||||
#include <QVector>
|
||||
#include <QCryptographicHash>
|
||||
|
||||
|
||||
class dpoint_entity : public IEntity {
|
||||
private:
|
||||
entity_id _id;
|
||||
QString _title;
|
||||
QVector<storage_entity> _storages;
|
||||
|
||||
public:
|
||||
dpoint_entity() = default;
|
||||
dpoint_entity(const QString &title);
|
||||
|
||||
entity_id id();
|
||||
QString title();
|
||||
const QVector<storage_entity> storages();
|
||||
|
||||
void serialize(QDataStream &output);
|
||||
void deserialize(QDataStream &input);
|
||||
};
|
||||
|
||||
#endif // DPOINT_ENTITY_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue