如何使用boost :: serialization序列化std :: vector? [英] How can I serialize an std::vector with boost::serialization?

查看:336
本文介绍了如何使用boost :: serialization序列化std :: vector?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

class workflow {

private:
friend class boost::serialization::access;

template<class Archive>
void serialize(Archive & ar, const unsigned int version)
{
  ar & tasks;
  ar & ID;
}

 vector<taskDescriptor> tasks;
 int ID;

如何使用Boost库序列化成员任务"?

How can i serialize the member "tasks" using boost libraries?

推荐答案

#include <boost/serialization/vector.hpp>

还请阅读教程.

这篇关于如何使用boost :: serialization序列化std :: vector?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆