2012/11/22 Olivier Austina <olivier.austina@gmail.com>
Hello,
I am a newbie of boost and I want to use it. I would like to serialize a list. The list is defined with the following data type:
typedef struct person {
char *name;
char *first_name;
struct person *next;
} person;
person *list_person;