summaryrefslogtreecommitdiffstats
blob: 6e5ed888bff91855c5fd8c0e08981350407ac868 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * Copyright (c) 2010-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <Swiften/Base/IDGenerator.h>

#include <boost/lexical_cast.hpp>
#include <boost/uuid/uuid.hpp>
#include <boost/uuid/uuid_generators.hpp>
#include <boost/uuid/uuid_io.hpp>

namespace Swift {

IDGenerator::IDGenerator() {
}

std::string IDGenerator::generateID() {
	static boost::uuids::random_generator generator;
	return boost::lexical_cast<std::string>(generator());
}

}