I am looking to convert a boost::uuid to a const char*. What is the correct syntax for the conversion?
I am looking to convert a boost::uuid to a const char*. What is the correct syntax for the conversion?
boost::uuids::uuid u;
const char* UUID = boost::uuids::to_string(u).c_str();
It is possible to do a simple and quick conversion.