-
Notifications
You must be signed in to change notification settings - Fork 63
Open
Labels
Description
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.
Reactions are currently unavailable