#ifndef STORAGEENTITY_H #define STORAGEENTITY_H #include "cargoentity.h" #include class StorageEntity { int _storage_id; int _max_capacity; std::vector _cargo; public: StorageEntity(int st_id, int mx_cap); }; #endif // STORAGEENTITY_H