------------------------------------------------------------------------------
| 862 | |
| 863 | //------------------------------------------------------------------------------ |
| 864 | void vtkFLUENTReader::SetCellArrayStatus(const char* name, int status) |
| 865 | { |
| 866 | if (status) |
| 867 | { |
| 868 | this->CellDataArraySelection->EnableArray(name); |
| 869 | } |
| 870 | else |
| 871 | { |
| 872 | this->CellDataArraySelection->DisableArray(name); |
| 873 | } |
| 874 | } |
| 875 | |
| 876 | //------------------------------------------------------------------------------ |
| 877 | void vtkFLUENTReader::EnableAllCellArrays() |
nothing calls this directly
no test coverage detected