Boost::Archive 导致奇怪的链接器错误
有谁知道为什么这两行会导致链接器错误? std::ifstream ifs("filename.file") boost::archive::binary_iarchive iarchv( ifs ) 错误8致命错误LNK1104…
boost::archive::xml_oarchive 中的 class_id
XML 序列化是否可以使用更人性化的 class_id 作为 GUID,使用 BOOST_CLASS_EXPORT_GUID 进行描述??? 考虑序列化类: SomeClass* b=new SomeClass("…
提升序列化与谷歌协议缓冲区?
Closed. This question is opinion-based. It is not currently accepting answers. 想要改进这个问题?更新问题,以便可以通过编辑这篇文章用事实和…
Boost序列化问题
我有这样的情况: class IData { virtual void get() = 0 virtual void set() = 0 } BOOST_ASSUME_IS_ABSTRACT(IData) BOOST_EXPORT_CLASS(IData) tem…
C++ Boost ptr_map序列化错误
我有一些想要构建的代码。 该代码使用 boost::ptr_map 类来序列化某些对象。 我有带有 boost1.38 的 Visual Studio 2008,但编译器出现以下错误。 我…
我应该对使用 boost::archive 保持警惕吗?
我想使用 boost::archive::iterators::base64_from_binary。 但我似乎无法弄清楚为什么它位于“存档”下。 这意味着什么? 我是否应该出于任何原因对…
C++ 的 YAML 序列化库?
Closed. This question is seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. It does not …
Boost序列化:指定模板类版本
我有一个序列化的模板类(称之为 C),我想为其指定一个用于 boost 序列化的版本。 由于 BOOST_CLASS_VERSION 不适用于模板类。 我尝试了这个: names…