diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2013-10-27 08:23:08 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2013-11-11 19:20:39 (GMT) |
commit | 31198c214de4f4a8f8935426574e9fa0eb0cf27e (patch) | |
tree | 67e39ea38a050f0a14b6d135874cf5813c3da51b /src/classdef.h | |
parent | 7cda115a6830bf816a094e37c498e5a50ce1b29c (diff) | |
download | Doxygen-31198c214de4f4a8f8935426574e9fa0eb0cf27e.zip Doxygen-31198c214de4f4a8f8935426574e9fa0eb0cf27e.tar.gz Doxygen-31198c214de4f4a8f8935426574e9fa0eb0cf27e.tar.bz2 |
More template and context updates
Diffstat (limited to 'src/classdef.h')
-rw-r--r-- | src/classdef.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/classdef.h b/src/classdef.h index 537ff1f..c3ae9f5 100644 --- a/src/classdef.h +++ b/src/classdef.h @@ -31,6 +31,7 @@ class ClassList; class ClassSDict; class OutputList; class FileDef; +class FileList; class BaseClassList; class NamespaceDef; class MemberDef; @@ -125,9 +126,6 @@ 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; @@ -310,6 +308,11 @@ class ClassDef : public Definition const ClassSDict *innerClasses() const; QCString title() const; + QCString generatedFromFiles() const; + const FileList &usedFiles() const; + + QCString includeStatement() const; + //----------------------------------------------------------------------------------- // --- setters ---- //----------------------------------------------------------------------------------- @@ -318,7 +321,7 @@ class ClassDef : public Definition void insertSubClass(ClassDef *,Protection p,Specifier s,const char *t=0); void setIncludeFile(FileDef *fd,const char *incName,bool local,bool force); void insertMember(MemberDef *); - void insertUsedFile(const char *); + void insertUsedFile(FileDef *); bool addExample(const char *anchor,const char *name, const char *file); void mergeCategory(ClassDef *category); void setNamespace(NamespaceDef *nd); @@ -375,6 +378,7 @@ class ClassDef : public Definition void addGroupedInheritedMembers(OutputList &ol,MemberListType lt, ClassDef *inheritedFrom,const QCString &inheritId); int countMembersIncludingGrouped(MemberListType lt,ClassDef *inheritedFrom,bool additional); + int countInheritanceNodes(); bool visited; |