Tagged Questions

2
votes
1answer
51 views

How to serialize shared/weak pointers?

I have a complex network of objects connected with QSharedPointers and QWeakPointers. Is there a simple way to save/load them with Boost.Serialization? So far I have this: namespace boost { …
0
votes
1answer
27 views

serialise nested unordered maps

Dear StackOverFlowers, I've got a variable with a declaration that looks like boost::unordered_map< std::string, boost::unordered_map <long,int>, hashe::fnv_1a> _pl; I need to …
2
votes
1answer
164 views

How to hook up Boost serialization & iostreams to serialize & gzip an object to string?

Hi all; I've been using the Boost serialization library, which is actually pretty nice, and lets me make simple wrappers to save my serializable objects to strings, like so: template <class T> …
0
votes
2answers
60 views

boost serialization access to protected data

Hi, When I try to serialize class with protected members, I get the following errors: "cannot access protected member declared in class NetElement". The idea is that I'd like to have one …
2
votes
2answers
105 views

How to use array optimization in boost serialization

I have to serialize an object that contains a std::vector that can contain thousand of members, with that vector sizes the serialization doesn't scale well. According with the documentation, Boost …
0
votes
2answers
78 views

Boost::Archive causing weird linker error.

Does anyone have a clue why those two lines would cause that linker error? std::ifstream ifs("filename.file"); boost::archive::binary_iarchive iarchv( ifs ); Error 8 fatal error LNK1104: …
0
votes
1answer
153 views

class_id in boost::archive::xml_oarchive

Is it possible for XML serialization to use more human friendly class_id as GUID, described using BOOST_CLASS_EXPORT_GUID ??? Consider serializing class: SomeClass* b=new SomeClass("c"); { …
6
votes
4answers
622 views

boost serialization vs google protocol buffers?

Does anyone with experience with these libraries have any comment on which one they preferred? Were there any performance differences or difficulties in using?
1
vote
2answers
345 views

Boost serialization performance: text vs. binary format

Hello! Should I prefer binary serialization over text serialization if performance is an issue ? Does anybody tested it on a large amount of data ?
0
votes
2answers
105 views

Anyone used Boost SERIALIZATION with Codegear Builder 2009 Successfully

If you have been successful in persisting your data, which type of stream did you get to work Text or Binary ANSI or UNICODE Did you have to use any BOOST_ASSERTS or some extra MACRO or dance …
0
votes
1answer
181 views

Boost serialization problem

Hi everyone, i have situation like this: class IData { virtual void get() = 0; virtual void set() = 0; } BOOST_ASSUME_IS_ABSTRACT(IData) BOOST_EXPORT_CLASS(IData) template<typename T> …
0
votes
2answers
224 views

Should I be leery of using boost::archive?

I want to use boost::archive::iterators::base64_from_binary. But I can't seem to figure out why it is under "archive." What does this imply? Should I be leery of using this code for any reason? …
1
vote
2answers
160 views

C++ Boost ptr_map serialization error

I have some code that I want to build. The code uses boost::ptr_map class to serialize certain objects. I have Visual Studio 2008 with boost1.38 and I am getting following error from compiler. I …
3
votes
1answer
537 views

Boost serialization: specifying a template class version

I have a template class that I serialize (call it C), for which I want to specify a version for boost serialization. As BOOST_CLASS_VERSION does not work for template classes. I tried this: namespace …
2
votes
2answers
256 views

Exceptions not passed correctly thru RCF (using Boost.Serialization)

I use RCF with boost.serialization (why use RCF's copy when we already use the original?) It works OK, but when an exception is thrown in the server, it's not passed correctly to the client. Instead, …