summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_log.hpp
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-08-01 19:36:36 +0000
committeryexo <yexo@openttd.org>2010-08-01 19:36:36 +0000
commit99cb47a3825f370e19adacd1ad1e6241eccb99f9 (patch)
tree395d0bce297155d8071e5a761e9290f107ed248b /src/ai/api/ai_log.hpp
parented4f806f1dcff2e10d2fdfb687e6bcebe9a81af3 (diff)
downloadopenttd-99cb47a3825f370e19adacd1ad1e6241eccb99f9.tar.xz
(svn r20284) -Codechange: use ///< for single-line doxygen comments in the AI code
Diffstat (limited to 'src/ai/api/ai_log.hpp')
-rw-r--r--src/ai/api/ai_log.hpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/ai/api/ai_log.hpp b/src/ai/api/ai_log.hpp
index 7fc4df7a0..641059fbc 100644
--- a/src/ai/api/ai_log.hpp
+++ b/src/ai/api/ai_log.hpp
@@ -31,11 +31,11 @@ public:
* This has no use for you, as AI writer.
*/
enum AILogType {
- LOG_SQ_ERROR = 0, //!< Squirrel printed an error.
- LOG_ERROR = 1, //!< User printed an error.
- LOG_SQ_INFO = 2, //!< Squirrel printed some info.
- LOG_WARNING = 3, //!< User printed some warning.
- LOG_INFO = 4, //!< User printed some info.
+ LOG_SQ_ERROR = 0, ///< Squirrel printed an error.
+ LOG_ERROR = 1, ///< User printed an error.
+ LOG_SQ_INFO = 2, ///< Squirrel printed some info.
+ LOG_WARNING = 3, ///< User printed some warning.
+ LOG_INFO = 4, ///< User printed some info.
};
/**
@@ -43,11 +43,11 @@ public:
* This has no use for you, as AI writer.
*/
struct LogData {
- char **lines; //!< The log-lines.
- AILog::AILogType *type; //!< Per line, which type of log it was.
- int count; //!< Total amount of log-lines possible.
- int pos; //!< Current position in lines.
- int used; //!< Total amount of used log-lines.
+ char **lines; ///< The log-lines.
+ AILog::AILogType *type; ///< Per line, which type of log it was.
+ int count; ///< Total amount of log-lines possible.
+ int pos; ///< Current position in lines.
+ int used; ///< Total amount of used log-lines.
};
#endif /* EXPORT_SKIP */