markupeventhandler.h
来自「SP是一个基于GNU C++编译器」· C头文件 代码 · 共 52 行
H
52 行
// Copyright (c) 1995 James Clark// See the file COPYING for copying permission.#ifndef MarkupEventHandler_INCLUDED#define MarkupEventHandler_INCLUDED 1#ifdef __GNUG__#pragma interface#endif#include "Event.h"#include "ErrorCountEventHandler.h"#ifdef SP_NAMESPACEnamespace SP_NAMESPACE {#endifclass MarkupEventHandler : public ErrorCountEventHandler {public: MarkupEventHandler(); void startElement(StartElementEvent *); void endElement(EndElementEvent *); void uselink(UselinkEvent *); void usemap(UsemapEvent *); void startDtd(StartDtdEvent *); void endDtd(EndDtdEvent *); void startLpd(StartLpdEvent *); void endLpd(EndLpdEvent *); void sgmlDecl(SgmlDeclEvent *); void commentDecl(CommentDeclEvent *); void markedSectionStart(MarkedSectionStartEvent *); void markedSectionEnd(MarkedSectionEndEvent *); void notationDecl(NotationDeclEvent *); void entityDecl(EntityDeclEvent *); void elementDecl(ElementDeclEvent *); void attlistDecl(AttlistDeclEvent *); void linkAttlistDecl(LinkAttlistDeclEvent *); void attlistNotationDecl(AttlistNotationDeclEvent *); void linkDecl(LinkDeclEvent *); void idLinkDecl(IdLinkDeclEvent *); void shortrefDecl(ShortrefDeclEvent *); void ignoredMarkup(IgnoredMarkupEvent *); virtual void markup(const Location &, const Markup &);};#ifdef SP_NAMESPACE}#endif#endif /* not MarkupEventHandler_INCLUDED */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?