summaryrefslogtreecommitdiffstats
path: root/addon/xmlparse/sectionhandler.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2001-08-01 18:08:50 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2001-08-01 18:08:50 (GMT)
commitecb8f53e30524a6eca3c28db4d1a1d708a5a0976 (patch)
treedd7f0f7dd0875046b1426a541b00547a8af08af1 /addon/xmlparse/sectionhandler.h
parent7703ff62ed5e27d32af03d4a613f16e8a3320eb1 (diff)
downloadDoxygen-ecb8f53e30524a6eca3c28db4d1a1d708a5a0976.zip
Doxygen-ecb8f53e30524a6eca3c28db4d1a1d708a5a0976.tar.gz
Doxygen-ecb8f53e30524a6eca3c28db4d1a1d708a5a0976.tar.bz2
Release-1.2.9
Diffstat (limited to 'addon/xmlparse/sectionhandler.h')
-rw-r--r--addon/xmlparse/sectionhandler.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/addon/xmlparse/sectionhandler.h b/addon/xmlparse/sectionhandler.h
new file mode 100644
index 0000000..b2d1ce1
--- /dev/null
+++ b/addon/xmlparse/sectionhandler.h
@@ -0,0 +1,26 @@
+#ifndef _SECTIONHANDLER_H
+#define _SECTIONHANDLER_H
+
+#include <qstring.h>
+#include <qlist.h>
+#include <qxml.h>
+
+#include "basehandler.h"
+#include "memberhandler.h"
+
+class SectionHandler : public BaseHandler<SectionHandler>
+{
+ public:
+ virtual void startMember(const QXmlAttributes& attrib);
+ virtual void startSection(const QXmlAttributes& attrib);
+ virtual void endSection();
+
+ SectionHandler(IBaseHandler *parent);
+ virtual ~SectionHandler();
+ private:
+ IBaseHandler *m_parent;
+ QString m_kind;
+ QList<MemberHandler> m_members;
+};
+
+#endif