| 462 | } |
| 463 | |
| 464 | ByteArray SystemObject::netStore() const { |
| 465 | DataStreamBuffer ds; |
| 466 | ds.write(m_uuid); |
| 467 | ds.write(m_config.name); |
| 468 | ds.write(position()); |
| 469 | ds.write(m_parameters); |
| 470 | return ds.takeData(); |
| 471 | } |
| 472 | |
| 473 | Json SystemObject::diskStore() const { |
| 474 | JsonObject store; |