Add entities w/out logic
This commit is contained in:
parent
1bda2c4047
commit
415ede2b91
11 changed files with 153 additions and 8 deletions
19
deliverypointentity.h
Normal file
19
deliverypointentity.h
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#ifndef DELIVERYPOINTENTITY_H
|
||||
#define DELIVERYPOINTENTITY_H
|
||||
|
||||
#include "storageentity.h"
|
||||
|
||||
#include <QString>
|
||||
#include <vector>
|
||||
|
||||
|
||||
class DeliveryPointEntity
|
||||
{
|
||||
QString _title;
|
||||
std::vector<StorageEntity> _storage;
|
||||
|
||||
public:
|
||||
DeliveryPointEntity(QString title);
|
||||
};
|
||||
|
||||
#endif // DELIVERYPOINTENTITY_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue