------------------------------------------------------------------------------ Create an object with Debug turned off and modified time initialized to zero.
| 209 | // Create an object with Debug turned off and modified time initialized |
| 210 | // to zero. |
| 211 | vtkObject::vtkObject() |
| 212 | { |
| 213 | this->Debug = false; |
| 214 | this->SubjectHelper = nullptr; |
| 215 | this->Modified(); // Ensures modified time > than any other time |
| 216 | // initial reference count = 1 and reference counting on. |
| 217 | } |
| 218 | |
| 219 | //------------------------------------------------------------------------------ |
| 220 | vtkObject::~vtkObject() |