00001 /* $Id: yapf_node_ship.hpp 22350 2011-04-19 18:12:47Z smatz $ */ 00002 00003 /* 00004 * This file is part of OpenTTD. 00005 * 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. 00006 * 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. 00007 * 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/>. 00008 */ 00009 00012 #ifndef YAPF_NODE_SHIP_HPP 00013 #define YAPF_NODE_SHIP_HPP 00014 00016 template <class Tkey_> 00017 struct CYapfShipNodeT 00018 : CYapfNodeT<Tkey_, CYapfShipNodeT<Tkey_> > 00019 { 00020 00021 }; 00022 00023 /* now define two major node types (that differ by key type) */ 00024 typedef CYapfShipNodeT<CYapfNodeKeyExitDir> CYapfShipNodeExitDir; 00025 typedef CYapfShipNodeT<CYapfNodeKeyTrackDir> CYapfShipNodeTrackDir; 00026 00027 /* Default NodeList types */ 00028 typedef CNodeList_HashTableT<CYapfShipNodeExitDir , 10, 12> CShipNodeListExitDir; 00029 typedef CNodeList_HashTableT<CYapfShipNodeTrackDir, 10, 12> CShipNodeListTrackDir; 00030 00031 00032 #endif /* YAPF_NODE_SHIP_HPP */