summaryrefslogtreecommitdiffstats
path: root/src/definitionimpl.h
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2021-06-08 12:57:15 (GMT)
committeralbert-github <albert.tests@gmail.com>2021-06-08 12:57:15 (GMT)
commita6fd1589f55f9bf7260c3d4e6f79104fb1c3ce2a (patch)
treed72d819f3a60a383d91b5710e4c026681cbc5b65 /src/definitionimpl.h
parent8c8a0343662f69ce65ced20dc8c6025e7fc022cd (diff)
downloadDoxygen-a6fd1589f55f9bf7260c3d4e6f79104fb1c3ce2a.zip
Doxygen-a6fd1589f55f9bf7260c3d4e6f79104fb1c3ce2a.tar.gz
Doxygen-a6fd1589f55f9bf7260c3d4e6f79104fb1c3ce2a.tar.bz2
issue #8585 INLINE_SOURCES = YES do not generate code inline from sources if there is no @return after @brief.
- Extended tests for the determination whether or not detailed section is available - Corrected links in the brief section part depending on the presence / not present detailed documentation
Diffstat (limited to 'src/definitionimpl.h')
-rw-r--r--src/definitionimpl.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/definitionimpl.h b/src/definitionimpl.h
index aeb3f8d..115d729 100644
--- a/src/definitionimpl.h
+++ b/src/definitionimpl.h
@@ -103,6 +103,8 @@ class DefinitionImpl
void setLanguage(SrcLangExt lang);
void writeSourceDef(OutputList &ol,const QCString &scopeName) const;
void writeInlineCode(OutputList &ol,const QCString &scopeName) const;
+ bool hasSourceRefs() const;
+ bool hasSourceReffedBy() const;
void writeSourceRefs(OutputList &ol,const QCString &scopeName) const;
void writeSourceReffedBy(OutputList &ol,const QCString &scopeName) const;
void makePartOfGroup(const GroupDef *gd);
@@ -245,6 +247,10 @@ class DefinitionMixin : public Base
{ m_impl.writeSourceDef(ol,scopeName); }
virtual void writeInlineCode(OutputList &ol,const QCString &scopeName) const
{ m_impl.writeInlineCode(ol,scopeName); }
+ virtual bool hasSourceRefs() const
+ { return m_impl.hasSourceRefs(); }
+ virtual bool hasSourceReffedBy() const
+ { return m_impl.hasSourceReffedBy(); }
virtual void writeSourceRefs(OutputList &ol,const QCString &scopeName) const
{ m_impl.writeSourceRefs(ol,scopeName); }
virtual void writeSourceReffedBy(OutputList &ol,const QCString &scopeName) const