17 Nov
2005
17 Nov
'05
9:50 a.m.
Hello I'm a new user of the serialization library and I didn't understand how I could serialize the following Map class : #include <vector> template<typename T> class Point { private: T x; T y; }; template<typename T> class Map { private: std::vector < Point<T> * > map; }; int main() { Map<double> m; /* double or float or int or user defined float/integer with infinite precision */ return 0; } Could somebody help me ? Thanks!