| 374 | } |
| 375 | |
| 376 | bool AFNodeManager::SetUInt32(const std::string& name, const uint32_t value) |
| 377 | { |
| 378 | auto index = GetIndex(name); |
| 379 | ARK_ASSERT_RET_VAL(index > 0, false); |
| 380 | |
| 381 | return SetUInt32(index, value); |
| 382 | } |
| 383 | |
| 384 | bool AFNodeManager::SetInt64(const std::string& name, const int64_t value) |
| 385 | { |