gpt4 book ai didi

c++ - 如何使用 boost::serialization 序列化 std::vector?

转载 作者:IT老高 更新时间:2023-10-28 22:08:00 25 4
gpt4 key购买 nike

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 库序列化成员“任务”?

最佳答案

#include <boost/serialization/vector.hpp>

另请阅读 tutorial .

关于c++ - 如何使用 boost::serialization 序列化 std::vector?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4276203/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com