I would like to use the doxygen to create the documentation from the resulting code and also the code to be very readable.
The following output is very unreadable, especially if the comment is half a page.
int Test(/* Inlined documentation for this param. */ int* value);
I would like something like this:
/**
* a normal member taking two arguments and returning an integer value.
* @param a an integer argument.
* @param s a constant character pointer.
* @see Test()
* @see ~Test()
* @see testMeToo()
* @see publicVar()
* @return The test results
*/
int testMe(int a,const char *s);
So, can VP do that?