Can someone give me an example of serialization/deseralization using the Boost library? I am working in c++/ubuntu 9.1
I have the class
class x
{
public:
x();
std::string name;
std::string surname;
};
How can I create XML <1.0...> id: <name>..<surname> using boost serialization? Or is there another way to do it?