| 592 | } |
| 593 | |
| 594 | bool vtkVariant::IsArray() const |
| 595 | { |
| 596 | return this->Type == VTK_OBJECT && this->Data.VTKObject && |
| 597 | this->Data.VTKObject->IsA("vtkAbstractArray"); |
| 598 | } |
| 599 | |
| 600 | unsigned int vtkVariant::GetType() const |
| 601 | { |
no test coverage detected