gwnavruntime/abstractgraph/abstractgraphvisualgeometrybuilder.h Source File

abstractgraphvisualgeometrybuilder.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: BRGR - secondary contact: NOBODY
10 #ifndef Navigation_AbstractGraphVisualGeometryBuilder_H
11 #define Navigation_AbstractGraphVisualGeometryBuilder_H
12 
13 
15 
16 
17 namespace Kaim
18 {
19 
20 class AbstractGraph;
21 
22 /* This class defines the way the data in a AbstractGraph should be rendered. */
23 class AbstractGraphVisualGeometryBuilder : public IVisualGeometryBuilder
24 {
25 
26 public:
27  explicit AbstractGraphVisualGeometryBuilder(AbstractGraph* abstractGraph)
28  : IVisualGeometryBuilder(), m_abstractGraph(abstractGraph) {}
29 
30  virtual void DoBuild();
31 
32 public:
33  AbstractGraph* m_abstractGraph;
34 };
35 
36 }
37 
38 
39 #endif
40 
Definition: gamekitcrowddispersion.h:20