truelight@9649: /* $Id$ */ truelight@9649: truelight@9649: /** @file ai_industrylist.hpp list all the industries */ truelight@9649: truelight@9649: #ifndef AI_INDUSTRYLIST_HPP truelight@9649: #define AI_INDUSTRYLIST_HPP truelight@9649: truelight@9649: #include "ai_abstractlist.hpp" truelight@9649: truelight@9649: /** truelight@9649: * Class that creates a list of current industries. truelight@9649: */ truelight@9649: class AIIndustryList : public AIAbstractList { truelight@9649: public: truelight@9649: /** truelight@9649: * The name of the class, needed by several sub-processes. truelight@9649: */ truelight@9649: static const char *GetClassName() { return "AIIndustryList"; } truelight@9649: truelight@9649: /** truelight@9649: * The constructor to make a list of industries. truelight@9649: */ truelight@9649: AIIndustryList(); truelight@9649: }; truelight@9649: truelight@9649: #endif /* AI_INDUSTRYLIST_HPP */