summaryrefslogtreecommitdiff
path: root/src/yapf/nodelist.hpp
diff options
context:
space:
mode:
authorKUDr <kudr@openttd.org>2007-01-13 13:33:36 +0000
committerKUDr <kudr@openttd.org>2007-01-13 13:33:36 +0000
commitf2e5e604fb671a1b86a942ea9bb480c03b5efa9d (patch)
treec12c9235da9fd1c9933108865ca991fa1f3092e4 /src/yapf/nodelist.hpp
parent38a9d092147cb48c48a786c10ec6a493e63f03c3 (diff)
downloadopenttd-f2e5e604fb671a1b86a942ea9bb480c03b5efa9d.tar.xz
(svn r8092) -Codechange: header files with miscellaneous template classes (smart pointers, blob, array, hashtable, etc.) moved from src/yapf to src/misc as they can now be used anywhere.
Diffstat (limited to 'src/yapf/nodelist.hpp')
-rw-r--r--src/yapf/nodelist.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/yapf/nodelist.hpp b/src/yapf/nodelist.hpp
index f51afbfd4..a4d14e934 100644
--- a/src/yapf/nodelist.hpp
+++ b/src/yapf/nodelist.hpp
@@ -3,9 +3,9 @@
#ifndef NODELIST_HPP
#define NODELIST_HPP
-#include "array.hpp"
-#include "hashtable.hpp"
-#include "binaryheap.hpp"
+#include "../misc/array.hpp"
+#include "../misc/hashtable.hpp"
+#include "../misc/binaryheap.hpp"
/** Hash table based node list multi-container class.
* Implements open list, closed list and priority queue for A-star