File diff r23537:f6a6d4ce4bd5 → r23538:8df50944b27a
src/vehiclelist.h
Show inline comments
 
@@ -49,13 +49,13 @@ struct VehicleListIdentifier {
 
		type(type), vtype(vtype), company(company), index(index) {}
 

	
 
	VehicleListIdentifier() : type(), vtype(), company(), index() {}
 
};
 

	
 
/** A list of vehicles. */
 
typedef SmallVector<const Vehicle *, 32> VehicleList;
 
typedef std::vector<const Vehicle *> VehicleList;
 

	
 
bool GenerateVehicleSortList(VehicleList *list, const VehicleListIdentifier &identifier);
 
void BuildDepotVehicleList(VehicleType type, TileIndex tile, VehicleList *engine_list, VehicleList *wagon_list, bool individual_wagons = false);
 
uint GetUnitNumberDigits(VehicleList &vehicles);
 

	
 
#endif /* VEHICLELIST_H */