| 95 | PropertyKeyPath::PathIndexType PropertyKeyPath::GetSize() const { return m_NodeInfos.size(); } |
| 96 | |
| 97 | PropertyKeyPath::PathIndexType PropertyKeyPath::AddNode(const NodeInfo &newNode) |
| 98 | { |
| 99 | m_NodeInfos.push_back(newNode); |
| 100 | return m_NodeInfos.size() - 1; |
| 101 | }; |
| 102 | |
| 103 | const PropertyKeyPath::NodeInfo &PropertyKeyPath::GetNode(const PathIndexType &index) const |
| 104 | { |