summaryrefslogtreecommitdiffstats
path: root/addon/xmlparse/sectionhandler.h
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2001-12-29 18:30:48 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2001-12-29 18:30:48 (GMT)
commitff11b7d98ad7d24770afd151aa6b439adc7506d2 (patch)
tree048517043e4c90dcc686bc038b480825fe32886c /addon/xmlparse/sectionhandler.h
parent414d7b3bbfad8ec16237c3708af188ecaee62886 (diff)
downloadDoxygen-ff11b7d98ad7d24770afd151aa6b439adc7506d2.zip
Doxygen-ff11b7d98ad7d24770afd151aa6b439adc7506d2.tar.gz
Doxygen-ff11b7d98ad7d24770afd151aa6b439adc7506d2.tar.bz2
Release-1.2.13
Diffstat (limited to 'addon/xmlparse/sectionhandler.h')
-rw-r--r--addon/xmlparse/sectionhandler.h51
1 files changed, 0 insertions, 51 deletions
diff --git a/addon/xmlparse/sectionhandler.h b/addon/xmlparse/sectionhandler.h
deleted file mode 100644
index 46cb422..0000000
--- a/addon/xmlparse/sectionhandler.h
+++ /dev/null
@@ -1,51 +0,0 @@
-/******************************************************************************
- *
- * $Id$
- *
- *
- * Copyright (C) 1997-2001 by Dimitri van Heesch.
- *
- * Permission to use, copy, modify, and distribute this software and its
- * documentation under the terms of the GNU General Public License is hereby
- * granted. No representations are made about the suitability of this software
- * for any purpose. It is provided "as is" without express or implied warranty.
- * See the GNU General Public License for more details.
- *
- */
-
-#ifndef _SECTIONHANDLER_H
-#define _SECTIONHANDLER_H
-
-#include <qstring.h>
-#include <qlist.h>
-#include <qxml.h>
-
-#include "basehandler.h"
-#include "memberhandler.h"
-#include "doxmlintf.h"
-
-class MainHandler;
-
-class SectionHandler : public ISection, public BaseHandler<SectionHandler>
-{
- public:
- virtual void startMember(const QXmlAttributes& attrib);
- virtual void startSection(const QXmlAttributes& attrib);
- virtual void endSection();
-
- SectionHandler(IBaseHandler *parent);
- virtual ~SectionHandler();
-
- // ISection
- virtual QString kind() const { return m_kind; }
- virtual QListIterator<IMember> getMemberIterator() const { return m_members; }
-
- void initialize(MainHandler *m);
-
- private:
- IBaseHandler *m_parent;
- QString m_kind;
- QList<IMember> m_members;
-};
-
-#endif