gwnavruntime/abstractgraph/abstractgraphvisualgeometrybuilder.h Source File

abstractgraphvisualgeometrybuilder.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 
10 namespace Kaim
11 {
12 
13 class AbstractGraph;
14 
15 // This class defines the way the data in a AbstractGraph should be rendered.
16 class AbstractGraphVisualGeometryBuilder : public IVisualGeometryBuilder
17 {
18 public:
19  explicit AbstractGraphVisualGeometryBuilder(AbstractGraph* abstractGraph) : m_abstractGraph(abstractGraph) {}
20  virtual void DoBuild();
21 
22 public:
23  AbstractGraph* m_abstractGraph;
24 };
25 
26 }
27 
28 
29 
The Autodesk Navigation namespace.
Definition: gamekitcrowddispersion.cpp:17