| 174 | } |
| 175 | |
| 176 | int vtkXMLStatisticalModelWriter::WriteHeader() |
| 177 | { |
| 178 | vtkIndent indent = vtkIndent().GetNextIndent(); |
| 179 | |
| 180 | ostream& os = *(this->Stream); |
| 181 | |
| 182 | if (!this->WritePrimaryElement(os, indent)) |
| 183 | { |
| 184 | return 0; |
| 185 | } |
| 186 | |
| 187 | this->WriteFieldData(indent.GetNextIndent()); |
| 188 | |
| 189 | // Do not support appended data for now. |
| 190 | return 1; |
| 191 | } |
| 192 | |
| 193 | int vtkXMLStatisticalModelWriter::WriteAPiece() |
| 194 | { |
no test coverage detected