blob: ed90a7d4cd590bae999f88e474ce88c80dfd6d6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#pragma once
#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, NetCompatibilityRules rules) const;
VehiclePtr netLoad(ByteArray const& netStore, NetCompatibilityRules rules) const;
Json diskStore(VehiclePtr const& vehicle) const;
VehiclePtr diskLoad(Json const& diskStore) const;
private:
StringMap<pair<String, Json>> m_vehicles;
};
}
|