src/ai/api/ai_vehiclelist.hpp
author truelight
Fri, 04 May 2007 19:55:35 +0000
branchnoai
changeset 9614 814c3bbf8ecc
child 9632 1816329e9cdd
permissions -rw-r--r--
(svn r9781) [NoAI] -Add: added AIVehicleListProfit[This|Last]Year as valuator
[NoAI] -Add: added AIVehicleList(Max)Age(Left) (3 functions) valuators
[NoAI] -Add: added AIVehicleList and some valuators
[NoAI] -Add: added regression test for AIVehicleList
/* $Id$ */

/** @file ai_vehiclelist.hpp list all the vehicles (you own) */

#ifndef AI_VEHICLELIST_HPP
#define AI_VEHICLELIST_HPP

#include "ai_abstractlist.hpp"

/**
 * Class that creates a list of vehicles you own.
 */
class AIVehicleList : public AIAbstractList {
public:
	/**
	 * The name of the class, needed by several sub-processes.
	 */
	static const char *GetClassName() { return "AIVehicleList"; }

	/**
	 * The constructor to make a list of towns.
	 */
	AIVehicleList();
};

#endif /* AI_VEHICLELIST_HPP */