Overte C++ Documentation
ClientServerUtils.h
1 
2 //
3 // ClientServerUtils.h
4 // libraries/networking/src
5 //
6 // Created by Ryan Huffman on 2017/01/20
7 // Copyright 2017 High Fidelity, Inc.
8 //
9 // Distributed under the Apache License, Version 2.0.
10 // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
11 //
12 
13 #ifndef hifi_ClientServerUtils_h
14 #define hifi_ClientServerUtils_h
15 
16 #include <cstdint>
17 
18 using MessageID = uint32_t;
19 const MessageID INVALID_MESSAGE_ID = 0;
20 
21 #endif // hifi_ClientServerUtils_h