6352e8e319
all at once
30 lines
622 B
C++
30 lines
622 B
C++
#ifndef STAR_VEHICLE_DATABASE_HPP
|
|
#define STAR_VEHICLE_DATABASE_HPP
|
|
|
|
#include "StarJson.hpp"
|
|
#include "StarVehicle.hpp"
|
|
|
|
namespace Star {
|
|
|
|
STAR_EXCEPTION(VehicleDatabaseException, StarException);
|
|
|
|
class VehicleDatabase {
|
|
public:
|
|
VehicleDatabase();
|
|
|
|
VehiclePtr create(String const& vehicleName, Json const& extraConfig = Json()) const;
|
|
|
|
ByteArray netStore(VehiclePtr const& vehicle) const;
|
|
VehiclePtr netLoad(ByteArray const& netStore) const;
|
|
|
|
Json diskStore(VehiclePtr const& vehicle) const;
|
|
VehiclePtr diskLoad(Json const& diskStore) const;
|
|
|
|
private:
|
|
StringMap<pair<String, Json>> m_vehicles;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|