| 286 | std::vector<unsigned int> DataSetIndices; |
| 287 | |
| 288 | void Visit(int) override |
| 289 | { |
| 290 | const auto curids = this->GetCurrentDataSetIndices(); |
| 291 | std::copy(curids.begin(), curids.end(), std::back_inserter(this->DataSetIndices)); |
| 292 | } |
| 293 | bool GetTraverseSubtree(int vtkNotUsed(nodeid)) override { return this->TraverseSubtree; } |
| 294 | |
| 295 | protected: |
nothing calls this directly
no test coverage detected