sea_transport_project/deliverypointentity.h
2020-09-10 00:43:40 +07:00

19 lines
302 B
C++

#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