Hi!
How would I go about serializing and deserializing Angelscript classes into a human readable format (preferably XML)? I've looked at the boost:serialization library, and it seems to require that functions be written specially for serializing each class. Is it possible to automatically serialize and deserialize classes without already knowing specifically what the members of each class are? If it requires a little diving into the source code I'm down for that, but I'd like to have the most elegant solution possible.
Thanks in advance,
Will
Edit:
I've come up with an idea for how to achieve this, though it wouldn't really be serialization in the strictest sense, but close enough for what I need. I'll report back if I get something working.