/****************************************************************************** * * $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 #include #include #include "basehandler.h" #include "memberhandler.h" class SectionHandler : public BaseHandler { 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 m_members; }; #endif