sea_transport_project/deliverypointentity.h
2020-09-19 08:27:52 +07:00

22 lines
369 B
C++

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