I need to write the content of a map (key is ID of int, value is of self-defined struct) into a file, and load it from the file later on. Can I do it in MFC with CArchive?
Thank you!
|
|
|
|
|
|
|
In MFC, I believe it's easiest to first serialize the size of the map, and then simply iterate through all the elements. You didn't specify if you use
If an error occurs when reading the archive, one of the streaming operations should throw an exception, which would then be caught by the framework on a higher level. |
||
|
|
|
|
I don't know much about MFC, but your problem is rather trivially solved using Boost.Serialization
And then later were you want to do the real archiving:
That's it. (disclaimer: code simply typed in this box, not tested at all, typo's were intended ;) |
|||
|