summaryrefslogtreecommitdiffstats
path: root/src/reflist.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2003-04-21 13:56:37 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2003-04-21 13:56:37 (GMT)
commit2eef94da7bc476987b1a46690bbdaeb76a05dd82 (patch)
tree3db0b381fb31e078de0540249c869667f44ec68d /src/reflist.h
parent7e0aeda8a19448b44750f2530864432c964b0374 (diff)
downloadDoxygen-2eef94da7bc476987b1a46690bbdaeb76a05dd82.zip
Doxygen-2eef94da7bc476987b1a46690bbdaeb76a05dd82.tar.gz
Doxygen-2eef94da7bc476987b1a46690bbdaeb76a05dd82.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