I'm trying to replace a call to ::CoCreateGUID so I can generate GUIDs in a C++ program on Linux.
I understand that libuuid (http://linux.die.net/man/3/libuuid) supports this, and I've read this question (http://stackoverflow.com/questions/153676/guids-in-a-c-linux-gcc-app).
I'm a bit new to Ubuntu/GCC/Linux, so I've started off like this:
#include <uuid/uuid.h>
And now I'm stuck :) G++ can't find uuid.h, and I'm not sure how to get/find it.
- Alex