Feck forward declaration
This commit is contained in:
parent
a22680711e
commit
9622afb211
4 changed files with 12 additions and 4 deletions
|
|
@ -5,7 +5,8 @@
|
|||
|
||||
#include <vector>
|
||||
|
||||
|
||||
class DeliveryPointEntity;
|
||||
class CargoEntity;
|
||||
class StorageEntity
|
||||
{
|
||||
int _storage_id;
|
||||
|
|
@ -13,6 +14,7 @@ class StorageEntity
|
|||
std::vector<CargoEntity> _cargo;
|
||||
|
||||
public:
|
||||
StorageEntity();
|
||||
StorageEntity(int st_id, int mx_cap);
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue