diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2013-12-05 22:54:38 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2013-12-12 19:13:02 (GMT) |
commit | 6dbf32d505d5c9e628474fb83e379b2646d24d3f (patch) | |
tree | e0b98894b91f0151f10136f50d42feb5d6a7dc1b /src/definition.h | |
parent | 4d5ddf7777b833969eeac30ee313484eb259f751 (diff) | |
download | Doxygen-6dbf32d505d5c9e628474fb83e379b2646d24d3f.zip Doxygen-6dbf32d505d5c9e628474fb83e379b2646d24d3f.tar.gz Doxygen-6dbf32d505d5c9e628474fb83e379b2646d24d3f.tar.bz2 |
More template and context enhancements
Diffstat (limited to 'src/definition.h')
-rw-r--r-- | src/definition.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/definition.h b/src/definition.h index 9de08fd..f444cc5 100644 --- a/src/definition.h +++ b/src/definition.h @@ -137,18 +137,18 @@ class Definition : public DefinitionIntf virtual QCString getSourceAnchor() const; /*! Returns the detailed description of this definition */ - QCString documentation() const; - + virtual QCString documentation() const; + /*! Returns the line number at which the detailed documentation was found. */ int docLine() const; - /*! Returns the file in which the detailed documentation block was found. + /*! Returns the file in which the detailed documentation block was found. * This can differ from getDefFileName(). */ QCString docFile() const; /*! Returns the brief description of this definition. This can include commands. */ - QCString briefDescription(bool abbreviate=FALSE) const; + virtual QCString briefDescription(bool abbreviate=FALSE) const; /*! Returns a plain text version of the brief description suitable for use * as a tool tip. @@ -259,6 +259,7 @@ class Definition : public DefinitionIntf MemberSDict *getReferencedByMembers() const; bool hasSections() const; + bool hasSources() const; /** returns TRUE if this class has a brief description */ bool hasBriefDescription() const; |