gwnavruntime/abstractgraph/blobs/abstractgraphcellblobbuilder.h Source File

abstractgraphcellblobbuilder.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 #ifndef Navigation_AbstractGraphCellBlobBuilder_H
8 #define Navigation_AbstractGraphCellBlobBuilder_H
9 
13 
14 
15 namespace Kaim
16 {
17 
18 class NavCell;
19 
20 class AbstractGraphCellBlobBuilder : public BaseBlobBuilder<AbstractGraphCellBlob>
21 {
22 public:
23  AbstractGraphCellBlobBuilder(const NavCell* navCell, const KyArray< Ptr< BlobHandler<AbstractGraphFloorBlob> >, MemStat_NavDataGen >* graphFloorBlobHandlers, KyUInt32 graphFloorCount)
24  : m_navCell(navCell)
25  , m_graphFloorBlobHandlers(graphFloorBlobHandlers)
26  , m_graphFloorCount(graphFloorCount)
27  {}
28 
29 private:
30  virtual void DoBuild();
31 
32 private:
33  const NavCell* m_navCell;
34  const KyArray< Ptr< BlobHandler<AbstractGraphFloorBlob> >, MemStat_NavDataGen >* m_graphFloorBlobHandlers;
35  KyUInt32 m_graphFloorCount;
36 };
37 
38 
39 
40 }
41 
42 
43 #endif
Definition: gamekitcrowddispersion.h:20
unsigned int KyUInt32
Type used internally to represent an unsigned 32-bit integer.
Definition: types.h:36