source: branches/blt4/src/core2/DOXYGEN-TIPS @ 4988

Last change on this file since 4988 was 441, checked in by mmc, 18 years ago

Cleaned up smart pointers and added Dictionary class.

File size: 667 bytes
Line 
1/**
2 * Method documentation.
3 * @param x The parameter.
4 * @return The return value.
5 * @see anotherFunction()
6@param var desc...      Document a parameter called var to a function or method.
7@return desc...         Document the return value of a function.
8@see elem       Add a "see also" link to elem , which can be a function, class, or any other documented identifier.
9@author name    Indicate the author of an element.
10@author name    Indicate the author of an element.
11@version ver    Indicate the version of an element.
12@todo desc...   Leave a note about unfinished work.
13@warning desc...        Leave a warning.
14 */
15
16/** Single-line documentation. */   
17/// Single-line documentation.
Note: See TracBrowser for help on using the repository browser.