| 169 | } |
| 170 | |
| 171 | var NodeBase::getNodeProperty(const Identifier& id) |
| 172 | { |
| 173 | auto propTree = getPropertyTree().getChildWithProperty(PropertyIds::ID, id.toString()); |
| 174 | |
| 175 | if (propTree.isValid()) |
| 176 | return propTree[PropertyIds::Value]; |
| 177 | |
| 178 | return {}; |
| 179 | } |
| 180 | |
| 181 | bool NodeBase::hasNodeProperty(const Identifier& id) const |
| 182 | { |
no test coverage detected