Doxygen
ExampleTreeContext类 参考

#include <context.h>

+ 类 ExampleTreeContext 继承关系图:
+ ExampleTreeContext 的协作图:

class  Private
 

Public 成员函数

virtual TemplateVariant get (const QCString &name) const
 Gets the value for a field name. 更多...
 
virtual StringVector fields () const
 Return the list of fields. 更多...
 
 ExampleTreeContext ()
 
virtual ~ExampleTreeContext ()
 
- Public 成员函数 继承自 TemplateStructIntf
virtual ~TemplateStructIntf ()
 Destroys the struct 更多...
 

静态 Public 成员函数

static TemplateStructIntfPtr alloc ()
 

Private 属性

std::unique_ptr< Privatep
 

详细描述

在文件 context.h859 行定义.

构造及析构函数说明

◆ ExampleTreeContext()

ExampleTreeContext::ExampleTreeContext ( )

在文件 context.cpp6965 行定义.

6965  : p(std::make_unique<Private>())
6966 {
6967 }

◆ ~ExampleTreeContext()

ExampleTreeContext::~ExampleTreeContext ( )
virtual

在文件 context.cpp6969 行定义.

6970 {
6971 }

成员函数说明

◆ alloc()

static TemplateStructIntfPtr ExampleTreeContext::alloc ( )
inlinestatic

在文件 context.h862 行定义.

863  { return std::static_pointer_cast<TemplateStructIntf>(std::make_shared<ExampleTreeContext>()); }

被这些函数引用 generateOutputViaTemplate().

◆ fields()

StringVector ExampleTreeContext::fields ( ) const
virtual

Return the list of fields.

实现了 TemplateStructIntf.

在文件 context.cpp6978 行定义.

6979 {
6980  return p->fields();
6981 }

引用了 p.

◆ get()

TemplateVariant ExampleTreeContext::get ( const QCString name) const
virtual

Gets the value for a field name.

参数
[in]nameThe name of the field.

实现了 TemplateStructIntf.

在文件 context.cpp6973 行定义.

6974 {
6975  return p->get(name);
6976 }

引用了 p.

类成员变量说明

◆ p

std::unique_ptr<Private> ExampleTreeContext::p
private

在文件 context.h873 行定义.

被这些函数引用 fields() , 以及 get().


该类的文档由以下文件生成:
ExampleTreeContext::p
std::unique_ptr< Private > p
Definition: context.h:873