⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 loamhandler.h

📁 Doxygen的词根来源于Document(文档)和Oxygen(氧气)
💻 H
字号:
/****************************************************************************** * * $Id:$ * * * Copyright (C) 1997-2006 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 _LOAMHANDLER_H#define _LOAMHANDLER_H#include <qstring.h>#include <qlist.h>#include <doxmlintf.h>#include "basehandler.h"class MainHandler;class MemberReference;class ListOfAllMembersHandler : public BaseHandler<ListOfAllMembersHandler>{  public:    virtual void startMember(const QXmlAttributes& attrib);    virtual void startName(const QXmlAttributes& attrib);    virtual void endName();    virtual void startScope(const QXmlAttributes& attrib);    virtual void endScope();    virtual void startListOfAllMembers(const QXmlAttributes& attrib);    virtual void endListOfAllMembers();    ListOfAllMembersHandler(IBaseHandler *parent);    virtual ~ListOfAllMembersHandler() {}    void initialize(MainHandler *mh);    virtual IMemberReferenceIterator *members() const;  protected:    IBaseHandler *m_parent;    QList<MemberReference> m_members;};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -