Doxygen
ClassIndexContext类 参考

#include <context.h>

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

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. 更多...
 
 ClassIndexContext ()
 
virtual ~ClassIndexContext ()
 
- Public 成员函数 继承自 TemplateStructIntf
virtual ~TemplateStructIntf ()
 Destroys the struct 更多...
 

静态 Public 成员函数

static TemplateStructIntfPtr alloc ()
 

Private 属性

std::unique_ptr< Privatep
 

详细描述

在文件 context.h379 行定义.

构造及析构函数说明

◆ ClassIndexContext()

ClassIndexContext::ClassIndexContext ( )

在文件 context.cpp5108 行定义.

5108  : p(std::make_unique<Private>())
5109 {
5110 }

◆ ~ClassIndexContext()

ClassIndexContext::~ClassIndexContext ( )
virtual

在文件 context.cpp5112 行定义.

5113 {
5114 }

成员函数说明

◆ alloc()

static TemplateStructIntfPtr ClassIndexContext::alloc ( )
inlinestatic

在文件 context.h382 行定义.

383  { return std::static_pointer_cast<TemplateStructIntf>(std::make_shared<ClassIndexContext>()); }

被这些函数引用 generateOutputViaTemplate().

◆ fields()

StringVector ClassIndexContext::fields ( ) const
virtual

Return the list of fields.

实现了 TemplateStructIntf.

在文件 context.cpp5122 行定义.

5123 {
5124  return p->fields();
5125 }

引用了 p.

◆ get()

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

Gets the value for a field name.

参数
[in]nameThe name of the field.

实现了 TemplateStructIntf.

在文件 context.cpp5117 行定义.

5118 {
5119  return p->get(n);
5120 }

引用了 p.

类成员变量说明

◆ p

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

在文件 context.h393 行定义.

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


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