/****************************************************************************** * * $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 _MEMBERHANDLER_H #define _MEMBERHANDLER_H #include #include #include #include "basehandler.h" #include "paramhandler.h" class DocHandler; class MemberHandler : public BaseHandler { public: virtual void startMember(const QXmlAttributes& attrib); virtual void endMember(); virtual void startParam(const QXmlAttributes& attrib); virtual void endType(); virtual void endName(); virtual void startBriefDesc(const QXmlAttributes& attrib); virtual void startDetailedDesc(const QXmlAttributes& attrib); MemberHandler(IBaseHandler *parent); virtual ~MemberHandler(); private: IBaseHandler *m_parent; QString m_kind; QString m_id; QString m_protection; QString m_virtualness; QString m_type; QString m_name; DocHandler *m_brief; DocHandler *m_detailed; QList m_params; }; #endif