src/ai/api/ai_industrylist.hpp
author truebrain
Fri, 22 Feb 2008 12:30:17 +0000
branchnoai
changeset 9737 ee408edf3851
parent 9649 bc8c06513f5b
child 9772 c1035f0ac732
permissions -rw-r--r--
(svn r12216) [NoAI] -Codechange: made most functions 'static', which removes the need to create an instance to get, for example, engine information, and therefor heavily simplifying AI creation (Morloth)
/* $Id$ */

/** @file ai_industrylist.hpp list all the industries */

#ifndef AI_INDUSTRYLIST_HPP
#define AI_INDUSTRYLIST_HPP

#include "ai_abstractlist.hpp"

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

	/**
	 * The constructor to make a list of industries.
	 */
	AIIndustryList();
};

#endif /* AI_INDUSTRYLIST_HPP */