3 Jun
2010
3 Jun
'10
10:13 p.m.
I want to send my Array class using boost Mpi template<class T> class Array { private: int size; T* data; public: // constructors + other stuff }; Here T can be any built in type or user defined type. Suppose I have a class complex struct complex { std::vector<double> real_imag; // contain two elements }; How can I send Array<complex> using Boost::Mpi + serialization. Thanks in anticipation Regards Noman