OpenTTD
yapf.hpp
Go to the documentation of this file.
1 /* $Id: yapf.hpp 25608 2013-07-14 09:20:34Z rubidium $ */
2 
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  */
9 
12 #ifndef YAPF_HPP
13 #define YAPF_HPP
14 
15 #include "../../landscape.h"
16 #include "../pathfinder_func.h"
17 #include "../pf_performance_timer.hpp"
18 #include "yapf.h"
19 
20 //#undef FORCEINLINE
21 //#define inline inline
22 
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"
38 
39 
40 #endif /* YAPF_HPP */