------------------------------------------------------------------------------
| 86 | |
| 87 | //------------------------------------------------------------------------------ |
| 88 | void vtkXMLDataParser::PrintSelf(ostream& os, vtkIndent indent) |
| 89 | { |
| 90 | this->Superclass::PrintSelf(os, indent); |
| 91 | os << indent << "AppendedDataPosition: " << this->AppendedDataPosition << "\n"; |
| 92 | os << indent << "AppendedDataFound: " << this->AppendedDataFound << "\n"; |
| 93 | if (this->RootElement) |
| 94 | { |
| 95 | this->RootElement->PrintXML(os, indent); |
| 96 | } |
| 97 | if (this->Compressor) |
| 98 | { |
| 99 | os << indent << "Compressor: " << this->Compressor << "\n"; |
| 100 | } |
| 101 | else |
| 102 | { |
| 103 | os << indent << "Compressor: (none)\n"; |
| 104 | } |
| 105 | os << indent << "Progress: " << this->Progress << "\n"; |
| 106 | os << indent << "Abort: " << this->Abort << "\n"; |
| 107 | os << indent << "AttributesEncoding: " << this->AttributesEncoding << "\n"; |
| 108 | } |
| 109 | |
| 110 | //------------------------------------------------------------------------------ |
| 111 | int vtkXMLDataParser::Parse() |