------------------------------------------------------------------------------
| 63 | |
| 64 | //------------------------------------------------------------------------------ |
| 65 | std::vector<unsigned int> vtkDataAssemblyVisitor::GetCurrentDataSetIndices() const |
| 66 | { |
| 67 | std::vector<unsigned int> indices; |
| 68 | for (auto child : this->Internals->CurrentNode.children(DATASET_NODE_NAME)) |
| 69 | { |
| 70 | indices.push_back(child.attribute("id").as_uint()); |
| 71 | } |
| 72 | return indices; |
| 73 | } |
| 74 | |
| 75 | //------------------------------------------------------------------------------ |
| 76 | void vtkDataAssemblyVisitor::PrintSelf(ostream& os, vtkIndent indent) |