summaryrefslogtreecommitdiffstats
path: root/src/layout.h
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2012-11-18 21:43:28 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2012-11-18 21:43:28 (GMT)
commit1a68946cfa3e3ee749a683fdabc93e6b5311adeb (patch)
tree94365b932426de715b3a479094b7056e0c4f878b /src/layout.h
parent9c9313827b29876de43ad5305fd7ac162013359c (diff)
downloadDoxygen-1a68946cfa3e3ee749a683fdabc93e6b5311adeb.zip
Doxygen-1a68946cfa3e3ee749a683fdabc93e6b5311adeb.tar.gz
Doxygen-1a68946cfa3e3ee749a683fdabc93e6b5311adeb.tar.bz2
Release-1.8.2-20121118
Diffstat (limited to 'src/layout.h')
-rw-r--r--src/layout.h13
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;