For example:
class Test
{
/// This var contain Apple class
void* something;
};
I know that “something” will be pointed to the object of Apple type. How can i force tell that to doxygen (for DOT graphs relations).
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It might be a bit heavy handed, but one way would be to conditionally declare it as an
Apple*when processing it with doxygen:You can configure Doxygen to define the
DOXYGEN_INVOKEDmacro by using the PREDEFINED tag.