Feck forward declaration
This commit is contained in:
parent
a22680711e
commit
9622afb211
4 changed files with 12 additions and 4 deletions
|
|
@ -6,13 +6,16 @@
|
|||
#include <QString>
|
||||
|
||||
|
||||
class DeliveryPointEntity;
|
||||
class StorageEntity;
|
||||
class CargoEntity
|
||||
{
|
||||
QString _cargo_id;
|
||||
DeliveryPointEntity _destination;
|
||||
DeliveryPointEntity *_destination;
|
||||
|
||||
public:
|
||||
CargoEntity(QString _cargo_id, DeliveryPointEntity _destination);
|
||||
CargoEntity();
|
||||
CargoEntity(QString _cargo_id, DeliveryPointEntity *_destination);
|
||||
};
|
||||
|
||||
#endif // CARGOENTITY_H
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue