loamhandler.h

来自「Doxygen的词根来源于Document(文档)和Oxygen(氧气)」· C头文件 代码 · 共 53 行

H
53
字号
/****************************************************************************** * * $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 + =
减小字号Ctrl + -
显示快捷键?