summaryrefslogtreecommitdiffstats
blob: 5aa471c321b24ce0d360e96a7750d9d1e8d8036f (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());
}

}