gwnavruntime/base/guidcompoundblobbuilder.h Source File

guidcompoundblobbuilder.h
Go to the documentation of this file.
1 /*
2 * Copyright 2016 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 #pragma once
9 
13 
14 
15 namespace Kaim
16 {
17 
18 //class GuidCompoundBlobBuilder_trivial : public BaseBlobBuilder<GuidCompound>
19 //{
20 //public:
21 // GuidCompoundBlobBuilder_trivial(const GuidCompound& guidCompound) :
22 // m_guidCompound(&guidCompound)
23 // {}
24 //
25 //private:
26 // virtual void DoBuild();
27 //
28 //private:
29 // const GuidCompound* m_guidCompound;
30 //};
31 
32 class GuidCompoundBlobBuilder : public BaseBlobBuilder<GuidCompound>
33 {
34 public:
35  GuidCompoundBlobBuilder(const KyGuid* guids, KyUInt32 guidsCount, KyUInt32 timeStamp) :
36  m_guids(guids), m_guidsCount(guidsCount), m_timeStamp(timeStamp) {}
37 
38 private:
39  virtual void DoBuild();
40 
41  const KyGuid* m_guids;
42  KyUInt32 m_guidsCount;
43  KyUInt32 m_timeStamp;
44 };
45 
46 
47 }
48 
49 
std::uint32_t KyUInt32
uint32_t
Definition: types.h:29
The Autodesk Navigation namespace.
Definition: gamekitcrowddispersion.cpp:17