Add entities w/out logic
This commit is contained in:
parent
1bda2c4047
commit
415ede2b91
11 changed files with 153 additions and 8 deletions
|
|
@ -1,11 +1,18 @@
|
|||
#ifndef CARGOENTITY_H
|
||||
#define CARGOENTITY_H
|
||||
|
||||
#include "deliverypointentity.h"
|
||||
|
||||
#include <QString>
|
||||
|
||||
|
||||
class CargoEntity
|
||||
{
|
||||
QString _cargo_id;
|
||||
DeliveryPointEntity _destination;
|
||||
|
||||
public:
|
||||
CargoEntity();
|
||||
CargoEntity(QString _cargo_id, DeliveryPointEntity _destination);
|
||||
};
|
||||
|
||||
#endif // CARGOENTITY_H
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue