Feck forward declaration
This commit is contained in:
parent
a22680711e
commit
9622afb211
4 changed files with 12 additions and 4 deletions
|
|
@ -7,12 +7,15 @@
|
|||
#include <vector>
|
||||
|
||||
|
||||
class CargoEntity;
|
||||
class StorageEntity;
|
||||
class DeliveryPointEntity
|
||||
{
|
||||
QString _title;
|
||||
std::vector<StorageEntity> _storage;
|
||||
|
||||
public:
|
||||
DeliveryPointEntity();
|
||||
DeliveryPointEntity(QString title);
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue