Doxygen
HtmlEscaper类 参考
+ 类 HtmlEscaper 继承关系图:
+ HtmlEscaper 的协作图:

Public 成员函数

std::unique_ptr< TemplateEscapeIntfclone ()
 Create a copy of the escape filter 更多...
 
QCString escape (const QCString &s)
 Returns the input after escaping certain characters 更多...
 
void enableTabbing (bool)
 Setting tabbing mode on or off (for LaTeX) 更多...
 
- Public 成员函数 继承自 TemplateEscapeIntf
virtual ~TemplateEscapeIntf ()
 

详细描述

在文件 context.cpp8846 行定义.

成员函数说明

◆ clone()

std::unique_ptr<TemplateEscapeIntf> HtmlEscaper::clone ( )
inlinevirtual

Create a copy of the escape filter

实现了 TemplateEscapeIntf.

在文件 context.cpp8849 行定义.

8850  {
8851  return std::make_unique<HtmlEscaper>(*this);
8852  }

◆ enableTabbing()

void HtmlEscaper::enableTabbing ( bool  b)
inlinevirtual

Setting tabbing mode on or off (for LaTeX)

实现了 TemplateEscapeIntf.

在文件 context.cpp8857 行定义.

8857 {}

◆ escape()

QCString HtmlEscaper::escape ( const QCString input)
inlinevirtual

Returns the input after escaping certain characters

实现了 TemplateEscapeIntf.

在文件 context.cpp8853 行定义.

8854  {
8855  return convertToHtml(s,TRUE);
8856  }

引用了 convertToHtml() , 以及 TRUE.


该类的文档由以下文件生成:
TRUE
#define TRUE
Definition: qcstring.h:36
convertToHtml
QCString convertToHtml(const QCString &s, bool keepEntities)
Definition: util.cpp:4063