| 199 | // ------------------------------------vtkObject---------------------- |
| 200 | |
| 201 | vtkObject* vtkObject::New() |
| 202 | { |
| 203 | vtkObject* ret = new vtkObject; |
| 204 | ret->InitializeObjectBase(); |
| 205 | return ret; |
| 206 | } |
| 207 | |
| 208 | //------------------------------------------------------------------------------ |
| 209 | // Create an object with Debug turned off and modified time initialized |
nothing calls this directly
no test coverage detected