| 421 | } |
| 422 | |
| 423 | bool GetData(const TYPE* name, DATA& data) const |
| 424 | { |
| 425 | node_t* p = FindNode(name); |
| 426 | |
| 427 | if (p == nullptr) |
| 428 | { |
| 429 | return false; |
| 430 | } |
| 431 | |
| 432 | data = p->data; |
| 433 | return true; |
| 434 | } |
| 435 | |
| 436 | iterator Begin() |
| 437 | { |
nothing calls this directly
no outgoing calls
no test coverage detected