mirror of
https://github.com/overte-org/overte.git
synced 2025-04-18 00:26:33 +02:00
Move UUID.cpp/h to libraries/shared
This commit is contained in:
parent
cb5a49e6e4
commit
d166e6d8c3
2 changed files with 0 additions and 38 deletions
|
@ -1,17 +0,0 @@
|
|||
//
|
||||
// UUID.cpp
|
||||
// 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
|
||||
//
|
||||
|
||||
#include "UUID.h"
|
||||
|
||||
QString uuidStringWithoutCurlyBraces(const QUuid& uuid) {
|
||||
QString uuidStringNoBraces = uuid.toString().mid(1, uuid.toString().length() - 2);
|
||||
return uuidStringNoBraces;
|
||||
}
|
|
@ -1,21 +0,0 @@
|
|||
//
|
||||
// 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;
|
||||
|
||||
QString uuidStringWithoutCurlyBraces(const QUuid& uuid);
|
||||
|
||||
#endif // hifi_UUID_h
|
Loading…
Reference in a new issue