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?
Thanks--
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?
Thanks--
I think that the archive refers to it's function in archiving data, not as being obsolete...
boost::archive
is a namespace used in the Serialization library. In general, it's ok to use stuff in boost as long as it's not in a namespace called detail
.