| 245 | } |
| 246 | |
| 247 | double AFNodeManager::GetDouble(const std::string& name) const |
| 248 | { |
| 249 | auto index = GetIndex(name); |
| 250 | ARK_ASSERT_RET_VAL(index > 0, NULL_DOUBLE); |
| 251 | |
| 252 | return GetDouble(index); |
| 253 | } |
| 254 | |
| 255 | const std::string& AFNodeManager::GetString(const std::string& name) const |
| 256 | { |