~ubuntu-branches/debian/squeeze/openttd/squeeze

« back to all changes in this revision

Viewing changes to src/ai/api/ai_industrytypelist.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Jordi Mallach, Matthijs Kooijman, Jordi Mallach
  • Date: 2009-04-15 18:22:10 UTC
  • mfrom: (1.1.6 upstream) (2.1.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090415182210-22ktb8kdbp2tf3bm
[ Matthijs Kooijman ]
* New upstream release.
* Remove Debian specific desktop file, upstream provides one now. 
* Add debian/watch file.

[ Jordi Mallach ]
* Bump Standards-Version to 3.8.1, with no changes required.
* Move to debhelper compat 7. Bump Build-Depends accordingly.
* Use dh_prep.
* Add "set -e" to config script.
* Remove a few extra doc files that get installed by upstream Makefile.
* Add more complete copyright information.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: ai_industrytypelist.hpp 15060 2009-01-13 15:44:36Z smatz $ */
 
2
 
 
3
/** @file ai_industrytypelist.hpp List all available industry types. */
 
4
 
 
5
#ifndef AI_INDUSTRYTYPELIST_HPP
 
6
#define AI_INDUSTRYTYPELIST_HPP
 
7
 
 
8
#include "ai_abstractlist.hpp"
 
9
#include "ai_industrytype.hpp"
 
10
 
 
11
/**
 
12
 * Creates a list of valid industry types.
 
13
 * @ingroup AIList
 
14
 */
 
15
class AIIndustryTypeList : public AIAbstractList {
 
16
public:
 
17
        static const char *GetClassName() { return "AIIndustryTypeList"; }
 
18
        AIIndustryTypeList();
 
19
};
 
20
 
 
21
 
 
22
#endif /* AI_INDUSTRYTYPELIST_HPP */