query data
| 197 | |
| 198 | // query data |
| 199 | bool AFNodeManager::GetBool(const std::string& name) const |
| 200 | { |
| 201 | auto index = GetIndex(name); |
| 202 | ARK_ASSERT_RET_VAL(index > 0, NULL_BOOLEAN); |
| 203 | |
| 204 | return GetBool(index); |
| 205 | } |
| 206 | |
| 207 | int32_t AFNodeManager::GetInt32(const std::string& name) const |
| 208 | { |