Doxygen
CompAccept< T > 模板类 参考

Default accept implementation for compound nodes in the abstract syntax tree. 更多...

#include <docparser.h>

+ 类 CompAccept< T > 继承关系图:
+ CompAccept< T > 的协作图:

Public 成员函数

 CompAccept (DocParser &parser)
 
void accept (DocVisitor *v) override
 
const DocNodeListchildren () const
 
DocNodeListchildren ()
 
- Public 成员函数 继承自 DocNode
 DocNode (DocParser &parser)
 
virtual ~DocNode ()
 
virtual Kind kind () const =0
 
DocNodeparent () const
 
void setParent (DocNode *parent)
 
bool isPreformatted () const
 

Protected 属性

DocNodeList m_children
 
- Protected 属性 继承自 DocNode
DocNodem_parent = 0
 
DocParserm_parser
 

额外继承的成员函数

- Public 类型 继承自 DocNode
enum  Kind {
  Kind_Root = 0, Kind_Word = 1, Kind_WhiteSpace = 2, Kind_Para = 3,
  Kind_AutoList = 4, Kind_AutoListItem = 5, Kind_Symbol = 6, Kind_URL = 7,
  Kind_StyleChange = 8, Kind_SimpleSect = 9, Kind_Title = 10, Kind_SimpleList = 11,
  Kind_SimpleListItem = 12, Kind_Section = 13, Kind_Verbatim = 14, Kind_XRefItem = 15,
  Kind_HtmlList = 16, Kind_HtmlListItem = 17, Kind_HtmlDescList = 18, Kind_HtmlDescData = 19,
  Kind_HtmlDescTitle = 20, Kind_HtmlTable = 21, Kind_HtmlRow = 22, Kind_HtmlCell = 23,
  Kind_HtmlCaption = 24, Kind_LineBreak = 25, Kind_HorRuler = 26, Kind_Anchor = 27,
  Kind_IndexEntry = 28, Kind_Internal = 29, Kind_HRef = 30, Kind_Include = 31,
  Kind_IncOperator = 32, Kind_HtmlHeader = 33, Kind_Image = 34, Kind_DotFile = 35,
  Kind_Link = 36, Kind_Ref = 37, Kind_Formula = 38, Kind_SecRefItem = 39,
  Kind_SecRefList = 40, Kind_SimpleSectSep = 41, Kind_LinkedWord = 42, Kind_ParamSect = 43,
  Kind_ParamList = 44, Kind_InternalRef = 45, Kind_Copy = 46, Kind_Text = 47,
  Kind_MscFile = 48, Kind_HtmlBlockQuote = 49, Kind_VhdlFlow = 50, Kind_ParBlock = 51,
  Kind_DiaFile = 52, Kind_Emoji = 53, Kind_Sep = 54
}
 
- Protected 类型 继承自 DocNode
enum  RefType { Unknown, Anchor, Section, Table }
 
- Protected 成员函数 继承自 DocNode
void setInsidePreformatted (bool p)
 

详细描述

template<class T>
class CompAccept< T >

Default accept implementation for compound nodes in the abstract syntax tree.

在文件 docparser.h196 行定义.

构造及析构函数说明

◆ CompAccept()

template<class T >
CompAccept< T >::CompAccept ( DocParser parser)
inline

在文件 docparser.h199 行定义.

199 : DocNode(parser) {}

成员函数说明

◆ accept()

template<class T >
void CompAccept< T >::accept ( DocVisitor v)
inlineoverridevirtual

Acceptor function for node visitors. Part of the visitor pattern.

参数
vAbstract visitor.

实现了 DocNode.

在文件 docparser.h200 行定义.

201  {
202  T *obj = dynamic_cast<T *>(this);
203  v->visitPre(obj);
204  for (const auto &n : m_children) n->accept(v);
205  v->visitPost(obj);
206  }

被这些函数引用 DocSimpleSect::accept(), DocSimpleListItem::accept(), DocHtmlTable::accept(), validatingParseDoc() , 以及 validatingParseText().

◆ children() [1/2]

template<class T >
DocNodeList& CompAccept< T >::children ( )
inline

在文件 docparser.h208 行定义.

208 { return m_children; }

◆ children() [2/2]

类成员变量说明

◆ m_children

template<class T >
DocNodeList CompAccept< T >::m_children
protected

该类的文档由以下文件生成:
DocVisitor::visitPost
virtual void visitPost(DocAutoList *)=0
DocNode::DocNode
DocNode(DocParser &parser)
Definition: docparser.h:157
CompAccept::m_children
DocNodeList m_children
Definition: docparser.h:211
DocVisitor::visitPre
virtual void visitPre(DocAutoList *)=0