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

21 lines
357 B
C++

#ifndef CARGOENTITY_H
#define CARGOENTITY_H
#include "deliverypointentity.h"
#include <QString>
class DeliveryPointEntity;
class StorageEntity;
class CargoEntity
{
QString _cargo_id;
DeliveryPointEntity *_destination;
public:
CargoEntity();
CargoEntity(QString _cargo_id, DeliveryPointEntity *_destination);
};
#endif // CARGOENTITY_H