I'm getting an error with serializing a char* string error C2228: left of '.serialize' must have class/struct/union I could use a std::string and then get a const char* from it. but I require the char* string.
|
|
|||||||||||
|
|
The error message says it all, there's no support in boost serialization to serialize pointers to primitive types. You can do something like this in the store code:
and in the load code:
|
|||
|
|
Try this:
Since pointers are not portable, the data must be written instead. The text is known as a variable length field. Variable length fields are commonly output (serialized) in two data structures: length followed by data OR data followed by terminal character. Specifying the length first allows usage of block reading. With the latter data structure, the data must be read one unit at a time until the terminal character is read. Note: the latter data structure also implies that the terminal character cannot be part of the set of data items. Some important issue to think about for serialization: |
|||
|
|
There is no way to serialize pointer to something in You can't just say to your serializer: "Hey, take something out from this pointer and serialize this something. I don't care what size does it have, just do it..." First and the optimal solution for your problem is wrapping your |
|||
|

