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