| 95 | } |
| 96 | |
| 97 | void xg::guide::GuideController::PointObject(const nlohmann::json &config) { |
| 98 | if(!config.is_object()) |
| 99 | return; |
| 100 | auto point = xg::make_unique<xg::guide::Point>(config); |
| 101 | this->guides.push_back(std::move(point)); |
| 102 | } |
| 103 | |
| 104 | void xg::guide::GuideController::TagObject(const nlohmann::json &config) { |
| 105 | if(!config.is_object()) |