mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-14 09:56:36 +02:00
28 lines
604 B
C++
28 lines
604 B
C++
//
|
|
// FingerprintUtils.h
|
|
// libraries/networking/src
|
|
//
|
|
// Created by David Kelly on 2016-12-02.
|
|
// Copyright 2016 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_FingerprintUtils_h
|
|
#define hifi_FingerprintUtils_h
|
|
|
|
#include <QString>
|
|
#include <QUuid>
|
|
|
|
class FingerprintUtils {
|
|
public:
|
|
static QUuid getMachineFingerprint();
|
|
|
|
private:
|
|
static QString getMachineFingerprintString();
|
|
static QUuid _machineFingerprint;
|
|
};
|
|
|
|
#endif // hifi_FingerprintUtils_h
|
|
|