made some of the dbus API compliant with w3c auto-bg specification
[profile/ivi/automotive-message-broker.git] / lib / uuidhelper.cpp
1 #include "uuidhelper.h"
2
3 std::string amb::createUuid()
4 {
5         uuid_t id;
6         uuid_generate_random(id);
7
8         char out[37];
9         uuid_unparse(id, out);
10
11         return out;
12 }