------------------------------------------------------------------------------
| 129 | |
| 130 | //------------------------------------------------------------------------------ |
| 131 | bool vtkObjectManager::InitializeDefaultHandlers() |
| 132 | { |
| 133 | const char* error = nullptr; |
| 134 | if (!vtkMarshalContext::CallRegistrars( |
| 135 | this->Serializer.Get(), this->Deserializer.Get(), this->Invoker.Get(), &error)) |
| 136 | { |
| 137 | vtkErrorMacro(<< "Failed to register a default VTK SerDes handler. error=\"" << error << "\""); |
| 138 | return false; |
| 139 | } |
| 140 | return true; |
| 141 | } |
| 142 | |
| 143 | //------------------------------------------------------------------------------ |
| 144 | bool vtkObjectManager::InitializeExtensionModuleHandlers( |