sea_transport_project/storageentity.h
2020-09-19 08:27:52 +07:00

21 lines
345 B
C++

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