------------------------------------------------------------------------------
| 1011 | |
| 1012 | //------------------------------------------------------------------------------ |
| 1013 | void vtkAVSucdReader::SetCellArrayStatus(const char* name, int status) |
| 1014 | { |
| 1015 | if (status) |
| 1016 | { |
| 1017 | this->CellDataArraySelection->EnableArray(name); |
| 1018 | } |
| 1019 | else |
| 1020 | { |
| 1021 | this->CellDataArraySelection->DisableArray(name); |
| 1022 | } |
| 1023 | } |
| 1024 | |
| 1025 | //------------------------------------------------------------------------------ |
| 1026 | int vtkAVSucdReader::GetNumberOfCellArrays() |
nothing calls this directly
no test coverage detected