summaryrefslogtreecommitdiffstats
path: root/src/reflist.h
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2003-04-21 13:56:37 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2003-04-21 13:56:37 (GMT)
commitebd0447bcc5d3d75214c847954bfda1d2e8c97f5 (patch)
tree3db0b381fb31e078de0540249c869667f44ec68d /src/reflist.h
parent3cd2917eca7d09a30636b2b16efcd187bc3bf7c0 (diff)
downloadDoxygen-ebd0447bcc5d3d75214c847954bfda1d2e8c97f5.zip
Doxygen-ebd0447bcc5d3d75214c847954bfda1d2e8c97f5.tar.gz
Doxygen-ebd0447bcc5d3d75214c847954bfda1d2e8c97f5.tar.bz2
Release-1.3-20030421
Diffstat (limited to 'src/reflist.h')
-rw-r--r--src/reflist.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/reflist.h b/src/reflist.h
index c8d0937..25e7d2a 100644
--- a/src/reflist.h
+++ b/src/reflist.h
@@ -21,7 +21,7 @@
#include "qtbc.h"
#include <qintdict.h>
-#include "outputgen.h"
+//#include "outputgen.h"
/*! This struct represents an item in the list of references. */
struct RefItem
@@ -50,26 +50,26 @@ class RefList
RefItem *getFirstRefItem();
RefItem *getNextRefItem();
QCString listName() const;
- QCString optionName() const;
+ //QCString optionName() const;
QCString pageTitle() const;
QCString sectionTitle() const;
- BaseOutputDocInterface::SectionTypes sectionType() const;
+ //BaseOutputDocInterface::SectionTypes sectionType() const;
- RefList(const char *listName,const char *optionName,
- const char *pageTitle,const char *secTitle,
- BaseOutputDocInterface::SectionTypes type
+ RefList(const char *listName,
+ const char *pageTitle,const char *secTitle
+ /*,BaseOutputDocInterface::SectionTypes type*/
);
~RefList();
private:
int m_id;
QCString m_listName;
- QCString m_optionName;
+ //QCString m_optionName;
QCString m_pageTitle;
QCString m_secTitle;
QIntDict<RefItem> *m_dict;
QIntDictIterator<RefItem> *m_dictIterator;
- BaseOutputDocInterface::SectionTypes m_type;
+ //BaseOutputDocInterface::SectionTypes m_type;
};
#endif