summaryrefslogtreecommitdiffstats
path: root/src/classdef.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2013-08-26 08:18:59 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2013-10-21 18:21:33 (GMT)
commit784a67d23ff81275c95af4199179da094953be2e (patch)
tree90a165d2f3327f3ad94775f616c3440d37813702 /src/classdef.h
parent74815268dd88f2cfb4473462cef3c33eebd5516a (diff)
downloadDoxygen-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.h8
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 ----