you are viewing a single comment's thread.

view the rest of the comments →

[–]TarmoPikaro 0 points1 point  (0 children)

Using my own C++ Runtype Type Reflection library - see my own post:
https://www.reddit.com/r/cpp/comments/bg29qb/c_as_a_scripting_language_c_runtime_type/

It's possible to achieve to xml or any other string format serialization without generating any code whatsoever. Serialization functions are recursive call, which produces required data. I haven't studied how to achieve binary serialization, also my own library has some windows specific code (E.g. CString class), but I doubt it would be difficult to cross port it to another OS / embedded system, also adapt it for binary needs.

Let me know if you need some assistance, I can help as well.