Changeset - r5666:9f767230928f
[Not reviewed]
master
0 1 0
KUDr - 17 years ago 2007-01-14 19:29:21
kudr@openttd.org
(svn r8126) -Fix (r8125): missing #include fixes compilation error on g++ (still some warnings, working on it)
1 file changed with 2 insertions and 0 deletions:
0 comments (0 inline, 0 general)
src/station_cmd.cpp
Show inline comments
 
@@ -26,24 +26,26 @@
 
#include "airport.h"
 
#include "sprite.h"
 
#include "depot.h"
 
#include "train.h"
 
#include "water_map.h"
 
#include "industry_map.h"
 
#include "newgrf_callbacks.h"
 
#include "newgrf_station.h"
 
#include "yapf/yapf.h"
 
#include "date.h"
 
#include "helpers.hpp"
 

	
 
#include <memory>     // for auto_ptr
 

	
 
typedef enum StationRectModes
 
{
 
	RECT_MODE_TEST = 0,
 
	RECT_MODE_TRY,
 
	RECT_MODE_FORCE
 
} StationRectMode;
 

	
 
void StationRect_Init(Station *st);
 
static bool StationRect_IsEmpty(Station *st);
 
static bool StationRect_BeforeAddTile(Station *st, TileIndex tile, StationRectMode mode);
 
static bool StationRect_BeforeAddRect(Station *st, TileIndex tile, int w, int h, StationRectMode mode);
 
static bool StationRect_AfterRemoveTile(Station *st, TileIndex tile);
0 comments (0 inline, 0 general)