开发者

Doxygen including methods twice doc files

开发者 https://www.devze.com 2023-01-03 03:30 出处:网络
I\'m having this issue where doxygen is adding the method twice in the documentation file. Is there a setting that stops auto-generation of documenta开发者_开发知识库tion for methods within the .m fil

I'm having this issue where doxygen is adding the method twice in the documentation file. Is there a setting that stops auto-generation of documenta开发者_开发知识库tion for methods within the .m file.

For example in the documentation I'll see something like whats below where the first definition of + (Status *)registerUser is from the header XXXXXX.h file where the second is from XXXXXX.m.

Header documentation :

/**
    @brief   Test
    Yada Yada
    @return     <#(description)#>
*/
+ (Status *)registerUser;

Output:

+ (Status *) registerUser               

Test Yada Yada.

Returns:
    <#(description)#> 

+ (Status *) registerUser               

<#(brief description)#> <#(comprehensive description)#>

registerUser

Returns:
    <#(description)#> 

Definition at line 24 of file XXXXXX.m.


Problem solved! I found out that doxygen was including my build directory and my .svn directories.

I added to EXCLUDE_PATTERNS

*/.svn/*
*/.build/*
0

精彩评论

暂无评论...
验证码 换一张
取 消