| 449 | |
| 450 | template<typename T> |
| 451 | T* registerType(T* type) { |
| 452 | allTypes_.push_back(type); |
| 453 | return type; |
| 454 | } |
| 455 | |
| 456 | bool extractString(const char* name, const rapidjson::Value& value, std::string& out) { |
| 457 | if (value.IsObject() && value.HasMember(name)) { |
no outgoing calls
no test coverage detected