We are currently using Doxygen to generate the API.
We have put all around the framework annotation as "@api" to tell the developer is allowed to rely on this method since their name won't change.
/**
* method description
*
* @api
*/
function foo() {...}
I am looking for a way to only include the methods with these @api annotations in my API documentation.
I had a closer look into the option reference http://www.stack.nl/~dimitri/doxygen/config.html but didn't spot anything that may help. I wonder if that is possible with Doxygen...