18 lines
288 B
C++
18 lines
288 B
C++
#ifndef CARGOENTITY_H
|
|
#define CARGOENTITY_H
|
|
|
|
#include "deliverypointentity.h"
|
|
|
|
#include <QString>
|
|
|
|
|
|
class CargoEntity
|
|
{
|
|
QString _cargo_id;
|
|
DeliveryPointEntity _destination;
|
|
|
|
public:
|
|
CargoEntity(QString _cargo_id, DeliveryPointEntity _destination);
|
|
};
|
|
|
|
#endif // CARGOENTITY_H
|