| 176 | } |
| 177 | |
| 178 | std::string NodeUidMapper::GenerateUid() |
| 179 | { |
| 180 | // Format: "node_<counter>" - simple, unique within session |
| 181 | return "node_" + std::to_string(++m_UidCounter); |
| 182 | } |
| 183 | |
| 184 | void NodeUidMapper::OnNodeAdded(const DataNode* node) |
| 185 | { |