Changeset - r19610:bbf5abb7ce50
[Not reviewed]
master
0 1 0
yexo - 12 years ago 2012-09-21 20:31:42
yexo@openttd.org
(svn r24541) -Cleanup [FS#5260]: remove unused function GetGroupArraySize (juanjo)
1 file changed with 0 insertions and 12 deletions:
0 comments (0 inline, 0 general)
src/group.h
Show inline comments
 
@@ -85,35 +85,23 @@ static inline bool IsDefaultGroupID(Grou
 
 * Checks if a GroupID stands for all vehicles of a company
 
 * @param id_g The GroupID to check
 
 * @return true is id_g is identical to ALL_GROUP
 
 */
 
static inline bool IsAllGroupID(GroupID id_g)
 
{
 
	return id_g == ALL_GROUP;
 
}
 

	
 
#define FOR_ALL_GROUPS_FROM(var, start) FOR_ALL_ITEMS_FROM(Group, group_index, var, start)
 
#define FOR_ALL_GROUPS(var) FOR_ALL_GROUPS_FROM(var, 0)
 

	
 
/**
 
 * Get the current size of the GroupPool
 
 */
 
static inline uint GetGroupArraySize()
 
{
 
	const Group *g;
 
	uint num = 0;
 

	
 
	FOR_ALL_GROUPS(g) num++;
 

	
 
	return num;
 
}
 

	
 
uint GetGroupNumEngines(CompanyID company, GroupID id_g, EngineID id_e);
 

	
 
void SetTrainGroupID(Train *v, GroupID grp);
 
void UpdateTrainGroupID(Train *v);
 
void RemoveVehicleFromGroup(const Vehicle *v);
 
void RemoveAllGroupsForCompany(const CompanyID company);
 

	
 
extern GroupID _new_group_id;
 

	
 
#endif /* GROUP_H */
0 comments (0 inline, 0 general)