#include "JsonRepository.h" #include #include #include #include #include namespace kurator { namespace universe { JsonRepository::JsonRepository(const char*) { } ShipType JsonRepository::ship_type(const std::string& id) const { throw NotFound(id); } TurretType JsonRepository::turret_type(const std::string& id) const { throw NotFound(id); } void JsonRepository::for_ship_types(std::function) const { } void JsonRepository::for_turret_types(std::function) const { } } // namespace universe } // namespace kurator