[Doxygen-users] Interrupting Doxygen comment with code
Brought to you by:
dimitri
|
From: perrola <per...@gm...> - 2018-12-12 14:24:58
|
Hello All
Is it possible to interrupt Doxygen comment with code, so that for example,
a plant uml diagram is spread in my real code for a better link between the
diagram and the implementation ?
For example:
/**
* \brief Initialization of the component.
*
* Initialization function of the ALED component.
* \return No returned value
*
* \startuml
*/
void ALED_vidInit(void)
{
/**
* ALED->ALED : FunctionA()
*/
FunctionA();
/**
* ALED->ALED : FunctionB()
*/
FunctionB();
/**
* ALED->ALED : FunctionC()
*/
FunctionC();
}
/**
* \enduml
*
*/
Thank you for your answer
regards
--
Sent from: http://doxygen.10944.n7.nabble.com/Doxygen-Users-f3.html
|