doxdocgen
doxdocgen copied to clipboard
Smart Text support in C language
Is your feature request related to a problem? Please describe. Smart Text support in C language.
Describe the solution you'd like The current plug-in supports C++ Smart Text, but for C language projects, only empty briefs can be generated when using object-oriented design methods. The hope is:
/**
* @brief Create a Foo object
*
*/
typedef struct FooTag {
} Foo;
/**
* @brief Construct a new Foo object
*
* @parm me
*
*/
void Foo_ctor(Foo * const me) {}
Describe alternatives you've considered
Maybe can add the match of the struct and the _ctor suffix, or support regular expressions
Additional context Add any other context or screenshots about the feature request here.