Those of you who are familiar with Python might be knowing the 'Pickle' function. With this lists can be quikly stored in a file and can be retrieved later. Even lists(arrays) of objects can be stored. Very convenient indeed!
I was wondering if there is any similar function/facility in C++. I have an array of Class objects, which I would love to store in a txt file and later retrieve with just a simple library function like Pickle. (My Class objects also have some STL Vector elements!)
Any other suggestion please? This boost asks for 2GB space on my hard-disk, and I cant use it everywhere (I have to use different computers at Workplace, on which I dont have admin rights).