| 321 | } |
| 322 | |
| 323 | bool AFCEntity::SetUInt32(const std::string& name, const uint32_t value) |
| 324 | { |
| 325 | ARK_ASSERT_RET_VAL(m_pNodeManager != nullptr, false); |
| 326 | |
| 327 | return m_pNodeManager->SetUInt32(name, value); |
| 328 | } |
| 329 | |
| 330 | bool AFCEntity::SetInt64(const std::string& name, const int64_t value) |
| 331 | { |
nothing calls this directly
no outgoing calls
no test coverage detected