diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-07-15 17:11:26 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-07-15 17:11:26 (GMT) |
commit | 5346e18047c0e047db2f1b13dc2c767a73c5c305 (patch) | |
tree | bc5400211360251f121d60efdd50b09f10db11d2 /src/definition.h | |
parent | d723d351b1ec59ad9db456f820d59a6e270f21a4 (diff) | |
download | Doxygen-5346e18047c0e047db2f1b13dc2c767a73c5c305.zip Doxygen-5346e18047c0e047db2f1b13dc2c767a73c5c305.tar.gz Doxygen-5346e18047c0e047db2f1b13dc2c767a73c5c305.tar.bz2 |
Release-1.2.8-20010715
Diffstat (limited to 'src/definition.h')
-rw-r--r-- | src/definition.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/definition.h b/src/definition.h index 6136cc6..e881e43 100644 --- a/src/definition.h +++ b/src/definition.h @@ -76,12 +76,12 @@ class Definition void setBriefDescription(const char *b); /*! Returns TRUE iff the definition is documented */ virtual bool hasDocumentation() const; - virtual bool isLinkableInProject() = 0; - virtual bool isLinkable() = 0; + virtual bool isLinkableInProject() const = 0; + virtual bool isLinkable() const = 0; + virtual QCString getReference() const { return m_ref; } bool isReference() const { return !m_ref.isEmpty(); } void setReference(const char *r) { m_ref=r; } - QCString getReference() const { return m_ref; } /*! Add the list of anchors that mark the sections that are found in the * documentation. |