-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Open
Labels
Description
I am unable to use @publicsection
to declare a bunch of methods as public on Doxygen 1.8.13.
My class.h
file is as follows:
/*!
* @class Class
* A class for this example
*/
typedef struct Class {
int member1;
int member2;
int member3;
} Class;
/*!
* @publicsection @memberof Class
* @{
*/
int method1(Class self);
int method2(Class self);
int method3(Class self);
/*!
* @}
*/
I would expect to get:
But I get:
Here is the file with the Doxyfile I'm using:
doxygen-publicsection.zip