Hi,
I have one file (say file1.doxy) with doxygen comments:
/**
* Comment block 1
*/
...
/**
* Comment block 2
*/
...
/**
* Comment block 3
*/
And I want to create the file file2.doxy of which output is the same as:
/**
* Comment block 1
*
* Comment block 3
*/
Actually I want to refer to file file1.doxy from file file2.doxy and not to copy-paste information from file1.doxy, but I can insert needed marking tags into file1.doxy.
Is it possibly to do so with doxygen?