| 451 | } |
| 452 | |
| 453 | void AFClassCallBackManager::OnTableAdd(AFDelaySyncTable& table, const int row) |
| 454 | { |
| 455 | auto iter = table.row_list_.find(row); |
| 456 | if (iter == table.row_list_.end()) |
| 457 | { |
| 458 | AFDelaySyncRow row_data(row); |
| 459 | table.row_list_.insert(std::make_pair(row, row_data)); |
| 460 | } |
| 461 | else |
| 462 | { |
| 463 | iter->second.node_list_.clear(); |
| 464 | } |
| 465 | } |
| 466 | |
| 467 | void AFClassCallBackManager::OnTableDelete(AFDelaySyncTable& table, const int row) |
| 468 | { |