gwnavruntime/pathfollower/imovepositiononpathpredicate.h Source File

imovepositiononpathpredicate.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 
9 
10 namespace Kaim
11 {
12 
13 class PositionOnLivePath;
14 
15 
18 {
19 public:
20  // ------------------------------ Functions -----------------------------
21 
24 
25 
26  // ---------------------------------- Pure Virtual Functions ----------------------------------
27 
28  virtual bool CanMoveForward(PositionOnLivePath& positionOnLivePath) = 0;
29  virtual bool CanMoveBackward(PositionOnLivePath& positionOnLivePath) = 0;
30 };
31 
32 } // namespace Kaim
33 
Interface used to verify a PositionOnPath can be moved forward along the Path.
Definition: imovepositiononpathpredicate.h:17
The Autodesk Navigation namespace.
Definition: gamekitcrowddispersion.cpp:17
This class aggregates all necessary information to describe a position on a LivePath, namely:
Definition: positiononlivepath.h:43