12
votes
What’s a good way to serialize Delphi object tree to XML--using RTTI and not custom code?
You can use the JVCL TJvAppXMLFileStorage component to serialize TPersistent derived classes.
uses
JvAppXMLStorage;
var
Storage: TJvAppXMLFileStorage;
begin
Storage := TJvApp …
