| 734 | } |
| 735 | |
| 736 | void vtkCellGrid::SetSchema(vtkStringToken name, vtkTypeUInt32 version) |
| 737 | { |
| 738 | if (name == this->SchemaName && version == this->SchemaVersion) |
| 739 | { |
| 740 | return; |
| 741 | } |
| 742 | this->Modified(); |
| 743 | this->SchemaName = name; |
| 744 | this->SchemaVersion = version; |
| 745 | } |
| 746 | |
| 747 | vtkCellGrid* vtkCellGrid::GetData(vtkInformation* info) |
| 748 | { |
no test coverage detected