From fa83500d151a11ec557961451281f06fd158a7b8 Mon Sep 17 00:00:00 2001 From: Rtch90 Date: Fri, 3 Feb 2012 15:15:54 +0000 Subject: [PATCH] [Fix] Changed typename to class in template paremeter list. --- src/libUnuk/Engine/Pathfinding.cpp | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/libUnuk/Engine/Pathfinding.cpp b/src/libUnuk/Engine/Pathfinding.cpp index b10acdf..d956eb5 100644 --- a/src/libUnuk/Engine/Pathfinding.cpp +++ b/src/libUnuk/Engine/Pathfinding.cpp @@ -1,23 +1,28 @@ #include "Pathfinding.h" -template +template AStarSearch::AStarSearch(void) : _state(SEARCH_STATE_NOT_INITIALISED), _currentSolutionNode(NULL), _allocateNodeCount(0), _cancelRequest(false) {} -template +template AStarSearch::~AStarSearch(void) { } -template +template void AStarSearch::SetStartAndGoalStates(UserState& start, UserState& goal) { } -template +template unsigned int AStarSearch::SearchStep(void) { } + +template +bool AStarSearch::AddSuccessor(UserState& state) { + +}