summaryrefslogtreecommitdiffstats
path: root/src/uscxml/UUID.h
blob: 4a1128595c292d1ea984865a6d9a5c590ed1c013 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef UUID_H_8X65R2EI
#define UUID_H_8X65R2EI

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

namespace uscxml {

class UUID {
public:
	static std::string getUUID();
	static boost::uuids::random_generator uuidGen;
};
	
}


#endif /* end of include guard: UUID_H_8X65R2EI */