Feck forward declaration

This commit is contained in:
unknown 2020-09-19 08:27:52 +07:00
parent a22680711e
commit 9622afb211
4 changed files with 12 additions and 4 deletions

View file

@ -7,12 +7,15 @@
#include <vector>
class CargoEntity;
class StorageEntity;
class DeliveryPointEntity
{
QString _title;
std::vector<StorageEntity> _storage;
public:
DeliveryPointEntity();
DeliveryPointEntity(QString title);
};