diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2012-11-18 21:43:28 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2012-11-18 21:43:28 (GMT) |
commit | fee4053bd3dd075a2dd2cba4da8166ec5307eadd (patch) | |
tree | 94365b932426de715b3a479094b7056e0c4f878b /src/layout.h | |
parent | ceb4115c7b941039411e1793e01239610ff112a2 (diff) | |
download | Doxygen-fee4053bd3dd075a2dd2cba4da8166ec5307eadd.zip Doxygen-fee4053bd3dd075a2dd2cba4da8166ec5307eadd.tar.gz Doxygen-fee4053bd3dd075a2dd2cba4da8166ec5307eadd.tar.bz2 |
Release-1.8.2-20121118
Diffstat (limited to 'src/layout.h')
-rw-r--r-- | src/layout.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/layout.h b/src/layout.h index 3425a4c..830ee70 100644 --- a/src/layout.h +++ b/src/layout.h @@ -19,11 +19,12 @@ #ifndef LAYOUT_H #define LAYOUT_H -#include "qtbc.h" -#include "memberlist.h" #include <qlist.h> +#include "types.h" class LayoutParser; +class MemberList; +class QTextStream; /** @brief Base class representing a piece of a documentation page */ struct LayoutDocEntry @@ -87,12 +88,12 @@ private: /** @brief Represents of a member declaration list with configurable title and subtitle. */ struct LayoutDocEntryMemberDecl: public LayoutDocEntry { - LayoutDocEntryMemberDecl(MemberList::ListType tp, + LayoutDocEntryMemberDecl(MemberListType tp, const QCString &tl,const QCString &ss) : type(tp), m_title(tl), m_subscript(ss) {} Kind kind() const { return MemberDecl; } - MemberList::ListType type; + MemberListType type; QCString title(SrcLangExt lang) const; QCString subtitle(SrcLangExt lang) const; private: @@ -103,11 +104,11 @@ private: /** @brief Represents of a member definition list with configurable title. */ struct LayoutDocEntryMemberDef: public LayoutDocEntry { - LayoutDocEntryMemberDef(MemberList::ListType tp,const QCString &tl) + LayoutDocEntryMemberDef(MemberListType tp,const QCString &tl) : type(tp), m_title(tl) {} Kind kind() const { return MemberDef; } - MemberList::ListType type; + MemberListType type; QCString title(SrcLangExt lang) const; private: QCString m_title; |