diff options
Diffstat (limited to 'src/filedef.cpp')
-rw-r--r-- | src/filedef.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/filedef.cpp b/src/filedef.cpp index 47304c2..5ba3094 100644 --- a/src/filedef.cpp +++ b/src/filedef.cpp @@ -1449,3 +1449,10 @@ void FileDef::writeMemberDocumentation(OutputList &ol,MemberList::ListType lt,co MemberList * ml = getMemberList(lt); if (ml) ml->writeDocumentation(ol,name(),this,title); } + +bool FileDef::isLinkableInProject() const +{ + static bool showFiles = Config_getBool("SHOW_FILES"); + return hasDocumentation() && !isReference() && showFiles; +} + |