gwnavruntime/abstractgraph/blobs/abstractgraphcellblobbuilder.h Source File

abstractgraphcellblobbuilder.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 #pragma once
8 
12 
13 
14 namespace Kaim
15 {
16 
17 class NavCell;
18 
19 class AbstractGraphCellBlobBuilder : public BaseBlobBuilder<AbstractGraphCellBlob>
20 {
21 public:
22  AbstractGraphCellBlobBuilder(const NavCell* navCell, const KyArray< Ptr< BlobHandler<AbstractGraphFloorBlob> >, MemStat_NavDataGen >* graphFloorBlobHandlers, KyUInt32 graphFloorCount)
23  : m_navCell(navCell)
24  , m_graphFloorBlobHandlers(graphFloorBlobHandlers)
25  , m_graphFloorCount(graphFloorCount)
26  {}
27 
28 private:
29  virtual void DoBuild();
30 
31 private:
32  const NavCell* m_navCell;
33  const KyArray< Ptr< BlobHandler<AbstractGraphFloorBlob> >, MemStat_NavDataGen >* m_graphFloorBlobHandlers;
34  KyUInt32 m_graphFloorCount;
35 };
36 
37 
38 
39 }
40 
41 
std::uint32_t KyUInt32
uint32_t
Definition: types.h:29
The Autodesk Navigation namespace.
Definition: gamekitcrowddispersion.cpp:17