Generate Source Code for specific file using Doxygen

293 Views Asked by At

Setting SOURCE_BROWSER = TRUE show source code for all files.

Is it possible to show source of specific file?
Or enable \ref or equivalent using SOURCE_BROWSER = FALSE
Or remove source code for specifics files if SOURCE_BROWSER = TRUE
Or equivalent

1

There are 1 best solutions below

0
On BEST ANSWER

It is possible using \include and \verbinclude.

/**
* \verbinclude Example.cs
* \include Example.cs
* */
public class Example
{

}