I have a class which has may functions and i want to hide a particular function. For example
class Test
{
/**
* About Function1
*
* @param[in] arg1 About arg1
* @param[in] arg2 About arg2
*/
public void Function1(int arg1,char arg2);
// Presume same documentation for this function also
public void Function2(int,char);
// Presume same documentation for this function also
public void Function3(int,char);
// Presume same documentation for this function also
public void Function4(int,char);
}
Suppose I want to hide say Function2 how would I do that.
Now in the current scenario it is displaying all the four functions along with its documentations.
Now, I have the following attribute set in my .doxygen rule file:
EXTRACT_ALL = YES
Can you please suggest me something by which i can hide say Function2?