So see what Doc-O-Matic generates from your source click here.
Doc-O-Matic understands how developers document source code. The following source comment is very good to read due to Doc-O-Matic's ability to understand naturally formed comments. Forget about the times where it was necessary to use tags - if you don't like them.
If you do like XMLDoc or JavaDoc, no problem! Doc-O-Matic does support both equally well and all three styles are supported when writing source comments through the integrated editor back to the source.
Click the tabs to see other comment styles. If your browser doesn't display this page properly click here for the static version of this page.
// Description:
// Use the find function to locate a string S in the string list.
// Only use this function if the string list is sorted, to locate
// a string in a non-sorted string list use IndexOf.
// See Also:
// IndexOf, Sort, Sorted
// Arguments:
// S - The string to be located.
// Index - The index of S is returned through this parameter if it
// was found. It is not guaranteed that Index is not
// modified, even if the string isn't found.
// Return Value:
// TRUE if the string could be found in the string list,
// FALSE otherwise.
// Summary:
// Locates a string in the string list.
bool Stringlist::Find(const char *S, int &Index) { [...] }
Why not go ahead and try Doc-O-Matic right now?