(svn r27770) -Fix [FS#6540]: Initialize variables in station_sl.cpp (JGR)
[openttd.git] / src / pathfinder / yapf / yapf.hpp
blobfda79287d85145fd9205fffe1d5495dec0d4b3fa
1 /* $Id$ */
3 /*
4 * This file is part of OpenTTD.
5 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
6 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
7 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
8 */
10 /** @file yapf.hpp Base includes/functions for YAPF. */
12 #ifndef YAPF_HPP
13 #define YAPF_HPP
15 #include "../../landscape.h"
16 #include "../pathfinder_func.h"
17 #include "../pf_performance_timer.hpp"
18 #include "yapf.h"
20 //#undef FORCEINLINE
21 //#define inline inline
23 #include "../../misc/blob.hpp"
24 #include "../../misc/str.hpp"
25 #include "../../misc/fixedsizearray.hpp"
26 #include "../../misc/array.hpp"
27 #include "../../misc/hashtable.hpp"
28 #include "../../misc/binaryheap.hpp"
29 #include "../../misc/dbg_helpers.h"
30 #include "nodelist.hpp"
31 #include "../follow_track.hpp"
32 #include "yapf_type.hpp"
33 #include "yapf_base.hpp"
34 #include "yapf_node.hpp"
35 #include "yapf_common.hpp"
36 #include "yapf_costbase.hpp"
37 #include "yapf_costcache.hpp"
40 #endif /* YAPF_HPP */