I added Doxygen comments to my C++ source, and use Doxywizard to generate HTML output. It works fine, but I don't like that each argument is broken to a new line when showing the function header.
So instead of
void WeightProcessor::setOffset ( int i, long offsetVal )
on the HTML page it looks like:
void WeightProcessor::setOffset ( int i,
long offsetVal
)
Could someone help me with how could I set it to single line? Any help would be highly appreciated.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I added Doxygen comments to my C++ source, and use Doxywizard to generate HTML output. It works fine, but I don't like that each argument is broken to a new line when showing the function header.
So instead of
on the HTML page it looks like:
Could someone help me with how could I set it to single line? Any help would be highly appreciated.
This can be done by adding a style sheet.
First, create a file named my_styles.css, and add this one line:
.memname tr { float: left; }
In the config file, add:
HTML_EXTRA_STYLESHEET = my_styles.css