I need to keep my data in associative table. Something like:
typedef std::map< point, std::list<h_stat> > hm;
But STL containers do not have a ready serialization methods. It is very sad news. I think, it is not a good idea to link a boost library to my small project.
I program on Windows. Maybe, does windows.h or MFC have a associative table class, that has a serialization method from a box? Or is there another good container for C++ on the Internet?
Thank you in advance.