📄 htmlcommand.h
字号:
//---------------------------------------------------------------------------
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -