diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2005-02-27 20:01:29 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2005-02-27 20:01:29 (GMT) |
commit | 47b04448404f708d25de41246b04fb2219cc81df (patch) | |
tree | 2d189d04d6f9413eb324fae5f56f273f3855ff8b /src/definition.h | |
parent | 2ed43d4c3890c98475d4deb87d4a14ab949f90c4 (diff) | |
download | Doxygen-47b04448404f708d25de41246b04fb2219cc81df.zip Doxygen-47b04448404f708d25de41246b04fb2219cc81df.tar.gz Doxygen-47b04448404f708d25de41246b04fb2219cc81df.tar.bz2 |
Release-1.4.1-20050227
Diffstat (limited to 'src/definition.h')
-rw-r--r-- | src/definition.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/definition.h b/src/definition.h index a357f12..d4e4f7a 100644 --- a/src/definition.h +++ b/src/definition.h @@ -51,7 +51,7 @@ class Definition TypeNamespace, TypePackage, TypePage, TypeDir }; /*! Use this for dynamic inspection of the type of the derived class */ - virtual DefType definitionType() = 0; + virtual DefType definitionType() const = 0; /*! Create a new definition */ Definition( @@ -195,6 +195,7 @@ class Definition void writePathFragment(OutputList &ol) const; void writeNavigationPath(OutputList &ol) const; + virtual void writeQuickMemberLinks(OutputList &,MemberDef *) const {} protected: void setLocalName(const QCString name) { m_localName=name; } |