diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-03-05 18:16:47 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-03-05 18:16:47 (GMT) |
commit | 000241f7603af61328b25cd9a9defc40be43e558 (patch) | |
tree | fea55c7f521b9b8d4c7cdecc6579109f17cae89a /src/index.cpp | |
parent | 75cfc919c930dc2a5c9e6770d6b1e7b09e5e8883 (diff) | |
download | Doxygen-000241f7603af61328b25cd9a9defc40be43e558.zip Doxygen-000241f7603af61328b25cd9a9defc40be43e558.tar.gz Doxygen-000241f7603af61328b25cd9a9defc40be43e558.tar.bz2 |
Release_1.1.0-20000305
Diffstat (limited to 'src/index.cpp')
-rw-r--r-- | src/index.cpp | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/src/index.cpp b/src/index.cpp index 9072a1f..2b0a163 100644 --- a/src/index.cpp +++ b/src/index.cpp @@ -90,49 +90,6 @@ QCString abbreviate(const char *s,const char *name) //---------------------------------------------------------------------------- -void initBaseClassHierarchy(BaseClassList *bcl) -{ - BaseClassListIterator bcli(*bcl); - for ( ; bcli.current(); ++bcli) - { - ClassDef *cd=bcli.current()->classDef; - if (cd->baseClasses()->count()==0) // no base classes => new root - { - initBaseClassHierarchy(cd->baseClasses()); - } - cd->visited=FALSE; - } -} - -//---------------------------------------------------------------------------- - -void initClassHierarchy(ClassList *cl) -{ - ClassListIterator cli(*cl); - ClassDef *cd; - for ( ; (cd=cli.current()); ++cli) - { - cd->visited=FALSE; - initBaseClassHierarchy(cd->baseClasses()); - } -} - -//---------------------------------------------------------------------------- - -bool hasVisibleRoot(BaseClassList *bcl) -{ - BaseClassListIterator bcli(*bcl); - for ( ; bcli.current(); ++bcli) - { - ClassDef *cd=bcli.current()->classDef; - if (cd->isVisibleInHierarchy()) return TRUE; - hasVisibleRoot(cd->baseClasses()); - } - return FALSE; -} - -//---------------------------------------------------------------------------- - void writeClassTree(OutputList &ol,BaseClassList *bcl,bool hideSuper) { HtmlHelp *htmlHelp=0; |