gwnavruntime/navmesh/navfloor1to1stitchdata.h Source File

navfloor1to1stitchdata.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 
9 // ---------- Primary contact: JUBA - secondary contact: NOBODY
10 #ifndef Navigation_NavFloor1To1StitchData_H
11 #define Navigation_NavFloor1To1StitchData_H
12 
15 
16 namespace Kaim
17 {
18 
19 class Stitch1To1EdgeLink;
20 class NavFloor1To1StitchDataBlob;
21 
22 class NavFloor1To1StitchData
23 {
24  KY_DEFINE_NEW_DELETE_OPERATORS(MemStat_NavData)
25  KY_CLASS_WITHOUT_COPY(NavFloor1To1StitchData)
26 public:
27  NavFloor1To1StitchData() : m_floor1To1StitchDataBlob(KY_NULL), m_stitch1To1EdgeLinkBuffer(KY_NULL), m_numberOfLink(0), m_numberOfUnconnectedLink(0) {}
28 
29  const NavFloor1To1StitchDataBlob* m_floor1To1StitchDataBlob;
30  Stitch1To1EdgeLink* m_stitch1To1EdgeLinkBuffer;
31  KyUInt16 m_numberOfLink;
32  KyUInt16 m_numberOfUnconnectedLink;
33 };
34 
35 
36 
37 }
38 
39 #endif //Navigation_NavFloor_H
40 
#define KY_NULL
Null value.
Definition: types.h:247
#define KY_CLASS_WITHOUT_COPY(ClassName)
Define to forbid copy constructor and copy assignment.
Definition: types.h:387
Definition: gamekitcrowddispersion.h:20
#define KY_DEFINE_NEW_DELETE_OPERATORS(MemStat)
This macro defines new and delete operators.
Definition: memory.h:137
unsigned short KyUInt16
Type used internally to represent an unsigned 16-bit integer.
Definition: types.h:40