| 324 | // |
| 325 | |
| 326 | inline VrmlNodeType::VrmlNodeType(const char* nm) |
| 327 | { |
| 328 | assert(nm != nullptr); |
| 329 | name = static_cast<char*>(vtkVRMLAllocator::AllocateMemory((strlen(nm) + 1) * sizeof(char))); |
| 330 | strcpy(name, nm); |
| 331 | } |
| 332 | |
| 333 | inline VrmlNodeType::~VrmlNodeType() |
| 334 | { |
nothing calls this directly
no test coverage detected