Overte C++ Documentation
FingerprintUtils.h
1 //
2 // FingerprintUtils.h
3 // libraries/networking/src
4 //
5 // Created by David Kelly on 2016-12-02.
6 // Copyright 2016 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_FingerprintUtils_h
13 #define hifi_FingerprintUtils_h
14 
15 #include <QString>
16 #include <QUuid>
17 
18 class FingerprintUtils {
19 public:
20  static QUuid getMachineFingerprint();
21 
22 private:
23  static QString getMachineFingerprintString();
24  static QUuid _machineFingerprint;
25 };
26 
27 #endif // hifi_FingerprintUtils_h
28