------------------------------------------------------------------------------
| 378 | |
| 379 | //------------------------------------------------------------------------------ |
| 380 | bool vtkJSONDataSetWriter::WriteArrayAsRAW(vtkDataArray* array, const char* filePath) |
| 381 | { |
| 382 | vtkNew<vtkJSONDataSetWriter> writer; |
| 383 | vtkNew<vtkSingleFileArchiver> archiver; |
| 384 | writer->SetArchiver(archiver); |
| 385 | return writer->WriteArrayContents(array, filePath); |
| 386 | } |
| 387 | |
| 388 | //------------------------------------------------------------------------------ |
| 389 | void vtkJSONDataSetWriter::PrintSelf(ostream& os, vtkIndent indent) |
nothing calls this directly
no test coverage detected