| 533 | } |
| 534 | |
| 535 | void PropertyPythonObject::SaveDocFile(Base::Writer& writer) const |
| 536 | { |
| 537 | std::string buffer = this->toString(); |
| 538 | for (char it : buffer) { |
| 539 | writer.Stream().put(it); |
| 540 | } |
| 541 | } |
| 542 | |
| 543 | void PropertyPythonObject::RestoreDocFile(Base::Reader& reader) |
| 544 | { |