mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 05:36:40 +02:00
14 lines
No EOL
334 B
C++
14 lines
No EOL
334 B
C++
//
|
|
// UUID.cpp
|
|
// hifi
|
|
//
|
|
// Created by Stephen Birarda on 10/7/13.
|
|
// Copyright (c) 2013 HighFidelity, Inc. All rights reserved.
|
|
//
|
|
|
|
#include "UUID.h"
|
|
|
|
QString uuidStringWithoutCurlyBraces(const QUuid& uuid) {
|
|
QString uuidStringNoBraces = uuid.toString().mid(1, uuid.toString().length() - 2);
|
|
return uuidStringNoBraces;
|
|
} |