mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-13 11:51:26 +02:00
Add cstdint include to Asset* files
This commit is contained in:
parent
db92e3155c
commit
899b94eab3
3 changed files with 6 additions and 0 deletions
libraries/networking/src
|
@ -14,6 +14,8 @@
|
|||
#include <QBuffer>
|
||||
#include <QThread>
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
#include "AssetRequest.h"
|
||||
#include "AssetUpload.h"
|
||||
#include "NodeList.h"
|
||||
|
|
|
@ -16,6 +16,8 @@
|
|||
|
||||
#include <QtCore/QObject>
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
// You should be able to upload an asset from any thread, and handle the responses in a safe way
|
||||
// on your own thread. Everything should happen on AssetClient's thread, the caller should
|
||||
// receive events by connecting to signals on an object that lives on AssetClient's threads.
|
||||
|
|
|
@ -14,6 +14,8 @@
|
|||
|
||||
#include <QtCore/QCryptographicHash>
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
using MessageID = uint32_t;
|
||||
using DataOffset = int64_t;
|
||||
|
||||
|
|
Loading…
Reference in a new issue