diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2013-08-26 08:18:59 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2013-10-21 18:21:33 (GMT) |
commit | 784a67d23ff81275c95af4199179da094953be2e (patch) | |
tree | 90a165d2f3327f3ad94775f616c3440d37813702 /src/classdef.h | |
parent | 74815268dd88f2cfb4473462cef3c33eebd5516a (diff) | |
download | Doxygen-784a67d23ff81275c95af4199179da094953be2e.zip Doxygen-784a67d23ff81275c95af4199179da094953be2e.tar.gz Doxygen-784a67d23ff81275c95af4199179da094953be2e.tar.bz2 |
Added rudimentary support for django like template system for output creation.
Diffstat (limited to 'src/classdef.h')
-rw-r--r-- | src/classdef.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/classdef.h b/src/classdef.h index 494b8f2..537ff1f 100644 --- a/src/classdef.h +++ b/src/classdef.h @@ -125,6 +125,12 @@ class ClassDef : public Definition /** returns TRUE if this class has documentation */ bool hasDocumentation() const; + /** returns TRUE if this class has a brief description */ + bool hasBriefDescription() const; + + /** returns TRUE if this class has a non-empty detailed description */ + bool hasDetailedDescription() const; + /** Returns the name as it is appears in the documentation */ QCString displayName(bool includeScope=TRUE) const; @@ -301,6 +307,8 @@ class ClassDef : public Definition bool isJavaEnum() const; bool isGeneric() const; + const ClassSDict *innerClasses() const; + QCString title() const; //----------------------------------------------------------------------------------- // --- setters ---- |