diff options
author | yexo <yexo@openttd.org> | 2010-08-01 19:36:36 +0000 |
---|---|---|
committer | yexo <yexo@openttd.org> | 2010-08-01 19:36:36 +0000 |
commit | 99cb47a3825f370e19adacd1ad1e6241eccb99f9 (patch) | |
tree | 395d0bce297155d8071e5a761e9290f107ed248b /src/ai/api/ai_error.hpp | |
parent | ed4f806f1dcff2e10d2fdfb687e6bcebe9a81af3 (diff) | |
download | openttd-99cb47a3825f370e19adacd1ad1e6241eccb99f9.tar.xz |
(svn r20284) -Codechange: use ///< for single-line doxygen comments in the AI code
Diffstat (limited to 'src/ai/api/ai_error.hpp')
-rw-r--r-- | src/ai/api/ai_error.hpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/ai/api/ai_error.hpp b/src/ai/api/ai_error.hpp index af76ffeda..607eafbf4 100644 --- a/src/ai/api/ai_error.hpp +++ b/src/ai/api/ai_error.hpp @@ -49,19 +49,19 @@ public: * All categories errors can be divided in. */ enum ErrorCategories { - ERR_CAT_NONE = 0, //!< Error messages not related to any category. - ERR_CAT_GENERAL, //!< Error messages related to general things. - ERR_CAT_VEHICLE, //!< Error messages related to building / maintaining vehicles. - ERR_CAT_STATION, //!< Error messages related to building / maintaining stations. - ERR_CAT_BRIDGE, //!< Error messages related to building / removing bridges. - ERR_CAT_TUNNEL, //!< Error messages related to building / removing tunnels. - ERR_CAT_TILE, //!< Error messages related to raising / lowering and demolishing tiles. - ERR_CAT_SIGN, //!< Error messages related to building / removing signs. - ERR_CAT_RAIL, //!< Error messages related to building / maintaining rails. - ERR_CAT_ROAD, //!< Error messages related to building / maintaining roads. - ERR_CAT_ORDER, //!< Error messages related to managing orders. - ERR_CAT_MARINE, //!< Error messages related to building / removing ships, docks and channels. - ERR_CAT_WAYPOINT, //!< Error messages related to building / maintaining waypoints. + ERR_CAT_NONE = 0, ///< Error messages not related to any category. + ERR_CAT_GENERAL, ///< Error messages related to general things. + ERR_CAT_VEHICLE, ///< Error messages related to building / maintaining vehicles. + ERR_CAT_STATION, ///< Error messages related to building / maintaining stations. + ERR_CAT_BRIDGE, ///< Error messages related to building / removing bridges. + ERR_CAT_TUNNEL, ///< Error messages related to building / removing tunnels. + ERR_CAT_TILE, ///< Error messages related to raising / lowering and demolishing tiles. + ERR_CAT_SIGN, ///< Error messages related to building / removing signs. + ERR_CAT_RAIL, ///< Error messages related to building / maintaining rails. + ERR_CAT_ROAD, ///< Error messages related to building / maintaining roads. + ERR_CAT_ORDER, ///< Error messages related to managing orders. + ERR_CAT_MARINE, ///< Error messages related to building / removing ships, docks and channels. + ERR_CAT_WAYPOINT, ///< Error messages related to building / maintaining waypoints. /** * DO NOT USE! The error bitsize determines how many errors can be stored in |