I\'m trying to find a good example of how to use these binary wide character versions of boost\'s serialization stuff. I pieced together some code to try and get it working, bu
It turns out that boost/archive/binary_woarchive.hpp
and boost/archive/binary_wiarchive.hpp
are redundant.
Instead boost/archive/binary_oarchive.hpp
and boost/archive/binary_iarchive.hpp
will work just fine even for class instances that contain wide character variables!
I hope this information helps someone.