doxdocgen
doxdocgen copied to clipboard
Does not work properly with UE4 macros
trafficstars
Description
I am using this with unreal engine 4 and if i put a macro before the function then it should ignore the macro and generate the doc.

Code example
UFUNCTION(BlueprintPure)
static FVector TestFunction(int8 Stuff);
Expected result
/**
* @brief
*
* @param Stuff
* @return FVector
*/
UFUNCTION(BlueprintPure)
static FVector TestFunction(int8 Stuff);
Actual result
/**
* @brief
*
*/
UFUNCTION(BlueprintPure)
static FVector TestFunction(int8 Stuff);
This would probably be possible by adding a regex filter option. There are already keywords you can remove from the input that will be processed but I guess this won't suffice for this use case.