Serialization with Qt
- by Narek
I am programming a GUI with Qt. In my GUI I have a huge std::map. And "MyType" is a class that has different kinds of filds. So, in a word, I want to serialize the std::map. How can I do that? Does Qt provides us with neccesary features?
P.S. I would like to use std::map, NOT QMap.