# HG changeset patch # User truebrain # Date 1207571743 0 # Node ID d4321b8dd97b7445c411d05c53cacc5ae15dd76b # Parent dfafb0cf20ee84de6944c6d14d8522c75c8a532f (svn r12604) [NoAI] -Fix: document LogData to make Doxygen happy diff -r dfafb0cf20ee -r d4321b8dd97b src/ai/api/ai_log.hpp --- a/src/ai/api/ai_log.hpp Mon Apr 07 12:31:50 2008 +0000 +++ b/src/ai/api/ai_log.hpp Mon Apr 07 12:35:43 2008 +0000 @@ -35,10 +35,10 @@ * This has no use for you, as AI writer. */ struct LogData { - char **lines; - AILog::AILogType *type; - int count; - int pos; + 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. }; /**