------------------------------------------------------------------------------
| 495 | |
| 496 | //------------------------------------------------------------------------------ |
| 497 | std::string vtkDataAssembly::SerializeToXML(vtkIndent indent) const |
| 498 | { |
| 499 | std::ostringstream indent_str; |
| 500 | indent_str << indent; |
| 501 | |
| 502 | std::ostringstream stream; |
| 503 | this->Internals->Document.save(stream, indent_str.str().c_str()); |
| 504 | return stream.str(); |
| 505 | } |
| 506 | |
| 507 | //------------------------------------------------------------------------------ |
| 508 | void vtkDataAssembly::DeepCopy(vtkDataAssembly* other) |