htmlcommand.h
来自「把html转成txt 把html转成txt」· C头文件 代码 · 共 36 行
H
36 行
//---------------------------------------------------------------------------
#ifndef HtmlCommandH
#define HtmlCommandH
#include <string>
#include <map>#include "shared_ptr.h"#include "HtmlTag.h"
namespace DoxEngine
{
class HtmlReader;
class HtmlBaseHandler
{ public: virtual ~HtmlBaseHandler() { } virtual void handleCommand(HtmlReader& parent, HtmlTag &tag) = 0; }; typedef shared_ptr<HtmlBaseHandler> HtmlCommandElement; typedef std::map<std::string, DoxEngine::HtmlCommandElement> HtmlCommandMap; class HtmlCommands : public HtmlCommandMap { public: HtmlCommands(); };}
//---------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?