------------------------------------------------------------------------------
| 204 | |
| 205 | //------------------------------------------------------------------------------ |
| 206 | vtkVariant::vtkVariant() |
| 207 | { |
| 208 | this->Valid = false; |
| 209 | this->Type = VTK_VOID; |
| 210 | |
| 211 | // Zero the Data union by setting any field. |
| 212 | this->Data.UnsignedLongLong = 0; |
| 213 | } |
| 214 | |
| 215 | vtkVariant::vtkVariant(const vtkVariant& other) |
| 216 | { |
no test coverage detected