Is there a brand new serialization as well as reflection library in C++11 standard?
c++, c++11, reflection, serialization
Solution
To actually answer this, albeit a little late: There now is cereal which is apparently exactly what you've asked for.
Problem
Recently, it's not impossible for boost serialization to refine with respect to stuff in C++11 standard library. Meanwhile I need a serialization as well as reflection library for my project. I searched around and didn't find any. Therefore I'd like to know if there is existing one (hmm...it must be brand new to be C++11 compatible, not the aging MFC) or any basic, practical and explicit guidance about making my own. As far as I think, the rationale is to deduce on type with those helpers in STANDARD `<type_traits>`, which has already been adopted in boost serialization without std namespace. This might be as insignificant to you as to pick pebble out of egg, but I just can't make myself happy with boost.