gwnavruntime/base/guidcompoundblobbuilder.h Source File

guidcompoundblobbuilder.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: LASI - secondary contact: GUAL
9 #ifndef GwNavGen_GuidCompoundBlobBuilder_H
10 #define GwNavGen_GuidCompoundBlobBuilder_H
11 
15 
16 
17 namespace Kaim
18 {
19 
20 //class GuidCompoundBlobBuilder_trivial : public BaseBlobBuilder<GuidCompound>
21 //{
22 //public:
23 // GuidCompoundBlobBuilder_trivial(const GuidCompound& guidCompound) :
24 // m_guidCompound(&guidCompound)
25 // {}
26 //
27 //private:
28 // virtual void DoBuild();
29 //
30 //private:
31 // const GuidCompound* m_guidCompound;
32 //};
33 
34 class GuidCompoundBlobBuilder : public BaseBlobBuilder<GuidCompound>
35 {
36 public:
37  GuidCompoundBlobBuilder(const KyGuid* guids, KyUInt32 guidsCount, KyUInt32 timeStamp) :
38  m_guids(guids), m_guidsCount(guidsCount), m_timeStamp(timeStamp) {}
39 
40 private:
41  virtual void DoBuild();
42 
43  const KyGuid* m_guids;
44  KyUInt32 m_guidsCount;
45  KyUInt32 m_timeStamp;
46 };
47 
48 
49 }
50 
51 
52 #endif
Definition: gamekitcrowddispersion.h:20
unsigned int KyUInt32
Type used internally to represent an unsigned 32-bit integer.
Definition: types.h:36