----------------------------------------------------------------------------
| 29 | |
| 30 | //---------------------------------------------------------------------------- |
| 31 | bool vtkXMLDataWriterHelper::OpenFile() |
| 32 | { |
| 33 | assert(this->Writer != nullptr); |
| 34 | this->SetDebug(this->Writer->GetDebug()); |
| 35 | this->SetByteOrder(this->Writer->GetByteOrder()); |
| 36 | this->SetCompressor(this->Writer->GetCompressor()); |
| 37 | this->SetBlockSize(this->Writer->GetBlockSize()); |
| 38 | this->SetDataMode(this->Writer->GetDataMode()); |
| 39 | this->SetEncodeAppendedData(this->Writer->GetEncodeAppendedData()); |
| 40 | this->SetHeaderType(this->Writer->GetHeaderType()); |
| 41 | this->SetIdType(this->Writer->GetIdType()); |
| 42 | this->SetWriteToOutputString(this->Writer->GetWriteToOutputString()); |
| 43 | this->SetFileName(this->Writer->GetFileName()); |
| 44 | this->SetWriteTimeValue(this->Writer->GetWriteTimeValue()); |
| 45 | |
| 46 | return this->Superclass::OpenStream() != 0; |
| 47 | } |
| 48 | |
| 49 | //---------------------------------------------------------------------------- |
| 50 | bool vtkXMLDataWriterHelper::BeginWriting() |
no test coverage detected