| 267 | } |
| 268 | |
| 269 | std::optional<maajs::ValueType> ResourceImpl::get_node_data_parsed(std::string node_name) |
| 270 | { |
| 271 | auto json = get_node_data(node_name); |
| 272 | if (!json) { |
| 273 | return std::nullopt; |
| 274 | } |
| 275 | return maajs::JsonParse(env, *json); |
| 276 | } |
| 277 | |
| 278 | std::optional<maajs::ValueType> ResourceImpl::get_default_recognition_param(std::string reco_type) |
| 279 | { |
nothing calls this directly
no test coverage detected