
You can overload for any container type even if it has not already been done: namespace boost { namespace serialization { // single template<class Archive, class YOUR_TYPE> inline void serialize( Archive & ar , std::priority_queue< YOUR_TYPE >& t , const unsigned int ) { // I'll let you figure out the symmetric logic here, either that or you can // split the load & save. ar & boost::serialization::make_nvp( ... ); } } // end namespace serialization } // end namespace boost Hope this helps, Tim On Wed, Jul 2, 2008 at 10:02 AM, mbrodeur65 <martin.brodeur@adacelcanada.com> wrote:
Hi,
I am wondering if there is a way to serialize a std::priority_queue ?
thanks for any help. -- View this message in context: http://www.nabble.com/-serialization--priority_queue-tp18239627p18239627.htm... Sent from the Boost - Users mailing list archive at Nabble.com.
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
-- Regards, Timothy St. Clair [timothysc@gmail.com]