Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Doxygen @param direction arguments [in],[out],[in,out] example output

The optional direction argument for the @param command is documented here as one of the following:

@param[in] @param[out] @param[in,out] 

I do not see in any of the example sites how this information appears in the output. Is there an example of how this information should appear in the output?

like image 452
ThomasMcLeod Avatar asked Apr 08 '16 23:04

ThomasMcLeod


1 Answers

For the line:

\param[in,out] console_ptr - pointer to input from the console 

I get:

Parameters     [in,out]    console_ptr - pointer to input from the console.  
like image 69
Thomas Matthews Avatar answered Sep 20 '22 18:09

Thomas Matthews