diff options
Diffstat (limited to 'include/tools/uuid.h')
-rw-r--r-- | include/tools/uuid.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/include/tools/uuid.h b/include/tools/uuid.h new file mode 100644 index 0000000..0f0d9e6 --- /dev/null +++ b/include/tools/uuid.h @@ -0,0 +1,26 @@ +/* + * uuid.h + * + * Created on: 03.10.2012 + * Author: savop + */ + +#ifndef UUID_H_ +#define UUID_H_ + +#include <string> + +using namespace std; + +namespace upnp { + +namespace tools { + + string GenerateUUIDFromURL(string url); + string GenerateUUIDRandomly(); + +} + +} + +#endif /* UUID_H_ */ |