What happens to special commands that do not immediately precede=
a
function or member? For example:
void SomeClass::MemberFn(int i)
{
// calculate some stuff
/// @todo verify physical constants
float pi =3D 3.14f;
float e =3D 2.71f;
/// @todo obfuscate the following constants
int meaningOfLife =3D 42;
int mahabone =3D 13;
// some more stuff
}
I've looked at the doxygen output and I don't see the todo list
anywhere. Does the todo item have to be documented just before=
the
function definition? Is there a configuration switch that will=
tell
doxygen to extract mid-function todo's?
-cory
|