#ifndef DELIVERYPOINTENTITY_H #define DELIVERYPOINTENTITY_H #include "storageentity.h" #include #include class CargoEntity; class StorageEntity; class DeliveryPointEntity { QString _title; std::vector _storage; public: DeliveryPointEntity(); DeliveryPointEntity(QString title); }; #endif // DELIVERYPOINTENTITY_H