Overte C++ Documentation
UUID.h
1 //
2 // UUID.h
3 // libraries/shared/src
4 //
5 // Created by Stephen Birarda on 10/7/13.
6 // Copyright 2013 High Fidelity, Inc.
7 //
8 // Distributed under the Apache License, Version 2.0.
9 // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
10 //
11 
12 #ifndef hifi_UUID_h
13 #define hifi_UUID_h
14 
15 #include <QtCore/QUuid>
16 
17 const int NUM_BYTES_RFC4122_UUID = 16;
18 using NetworkLocalID = quint16;
19 
20 QString uuidStringWithoutCurlyBraces(const QUuid& uuid);
21 
22 #endif // hifi_UUID_h