mirror of
https://github.com/Zygo/bees.git
synced 2025-05-17 13:25:45 +02:00
15 lines
214 B
C++
15 lines
214 B
C++
#ifndef CRUCIBLE_UUID_H
|
|
#define CRUCIBLE_UUID_H
|
|
|
|
#include <string>
|
|
|
|
#include <uuid/uuid.h>
|
|
|
|
namespace crucible {
|
|
using namespace std;
|
|
|
|
string uuid_unparse(const unsigned char a[16]);
|
|
}
|
|
|
|
#endif // CRUCIBLE_UUID_H
|