| 229 | } |
| 230 | |
| 231 | uint64_t AFNodeManager::GetUInt64(const std::string& name) const |
| 232 | { |
| 233 | auto index = GetIndex(name); |
| 234 | ARK_ASSERT_RET_VAL(index > 0, NULL_INT64); |
| 235 | |
| 236 | return GetInt64(index); |
| 237 | } |
| 238 | |
| 239 | float AFNodeManager::GetFloat(const std::string& name) const |
| 240 | { |