| 447 | } |
| 448 | |
| 449 | bool AFCEntity::GetNode(const std::string& name, AFIData& data) const |
| 450 | { |
| 451 | ARK_ASSERT_RET_VAL(m_pNodeManager != nullptr, false); |
| 452 | |
| 453 | auto pNode = m_pNodeManager->GetNode(name); |
| 454 | ARK_ASSERT_RET_VAL(pNode != nullptr, false); |
| 455 | |
| 456 | return data.From(pNode); |
| 457 | } |
| 458 | |
| 459 | // get data |
| 460 | bool AFCEntity::GetBool(const std::string& name) const |
no test coverage detected