overte-HifiExperiments/libraries/shared/src/UUID.h
Simon Walton bed4033554 Local node IDs now working correctly
Move typedef to single location; fixes for replicated packets
(probably still not correct); reserve zero as local ID;
pass domain server's local ID in domain server list;
other tweaks.
2018-03-27 18:18:14 -07:00

22 lines
493 B
C

//
// UUID.h
// libraries/shared/src
//
// Created by Stephen Birarda on 10/7/13.
// Copyright 2013 High Fidelity, Inc.
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
#ifndef hifi_UUID_h
#define hifi_UUID_h
#include <QtCore/QUuid>
const int NUM_BYTES_RFC4122_UUID = 16;
using NetworkLocalID = quint16;
QString uuidStringWithoutCurlyBraces(const QUuid& uuid);
#endif // hifi_UUID_h