1
votes

Iknow there similar questions to this,but I didn't find an answer that can solve my problem, I have Program composed of one Header file, that includes mutiple static variables and functions.

the variable are used in mutiple source file, and have then different meaning , the functions too are implementet in different way in each time . My question is how can my comment in the source file be sees in HTML doxygen file. like :

/*!<
function that does stuff
@param value representing the mean stuff 
*/

    double func(double* value){
         FILE* inp =NULL; /*!< the file pointer of this function to write the result*/
         .............................................//!* all this commments should be see in functiopn description 
    }

and by the I know that , if I open the source file in the documentation I'll see the comment , but I want to explain the roll of each function and how it doing its job!

thanks in advance for any help!

1

1 Answers

1
votes

Here it is http://www.doxygen.nl/manual/docblocks.html#specialblock

If you just comment with // it won't appear on doxygen. Doxygen only parses comments starting with certain tokens, such as /** or /*!