aboutsummaryrefslogtreecommitdiff
path: root/src/uuid.cpp
blob: 8a30e2aa004ba25d2155747565c1ae5e0b089784 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "bu/uuid.h"

Bu::Uuid::Uuid()
{
	clear();
}

Bu::Uuid::~Uuid()
{
}

#define msb( i ) (1<<(7-i))

void Bu::Uuid::clear()
{
	data[7] = msb(0);
}