(svn r12604) [NoAI] -Fix: document LogData to make Doxygen happy noai
authortruebrain
Mon, 07 Apr 2008 12:35:43 +0000
branchnoai
changeset 9872 d4321b8dd97b
parent 9871 dfafb0cf20ee
child 9873 b1ab23560ecb
(svn r12604) [NoAI] -Fix: document LogData to make Doxygen happy
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.
 	};
 
 	/**