gwnavruntime/visualdebug/messages/servermemorylimitblob.h Source File

servermemorylimitblob.h
Go to the documentation of this file.
1 /*
2 * Copyright 2015 Autodesk, Inc. All rights reserved.
3 * Use of this software is subject to the terms of the Autodesk license agreement and any attachments or Appendices thereto provided at the time of installation or download,
4 * or which otherwise accompanies this software in either electronic or hard copy form, or which is signed by you and accepted by Autodesk.
5 */
6 
7 
8 // primary contact: BRGR - secondary contact: NOBODY
9 #ifndef Navigation_ServerMemoryLimitBlob_H
10 #define Navigation_ServerMemoryLimitBlob_H
11 
14 
15 namespace Kaim
16 {
17 
18 
19  class ServerMemoryLimitBlob
20  {
21  KY_ROOT_BLOB_CLASS(VisualDebugMessage, ServerMemoryLimitBlob, 0)
22  public:
23 
24  ServerMemoryLimitBlob() : m_memoryLimit(0) {}
25 
26  KyUInt32 m_memoryLimit;
27  };
28 
29  inline void SwapEndianness(Endianness::Target e, ServerMemoryLimitBlob& self)
30  {
31  SwapEndianness(e, self.m_memoryLimit);
32  }
33 
34 } // namespace Kaim
35 
36 #endif // Navigation_ServerMemoryLimit_H
37 
Target
Enumerates the possible endianness types relative to the current platform.
Definition: endianness.h:35
Definition: gamekitcrowddispersion.h:20
unsigned int KyUInt32
Type used internally to represent an unsigned 32-bit integer.
Definition: types.h:36