Doxygen
InheritanceNodeContext类 参考

#include <context.h>

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

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. 更多...
 
 InheritanceNodeContext (const ClassDef *cd, const QCString &name)
 
virtual ~InheritanceNodeContext ()
 
- Public 成员函数 继承自 TemplateStructIntf
virtual ~TemplateStructIntf ()
 Destroys the struct 更多...
 

静态 Public 成员函数

static TemplateStructIntfPtr alloc (const ClassDef *cd, const QCString &name)
 

Private 属性

std::unique_ptr< Privatep
 

详细描述

在文件 context.h960 行定义.

构造及析构函数说明

◆ InheritanceNodeContext()

InheritanceNodeContext::InheritanceNodeContext ( const ClassDef cd,
const QCString name 
)

在文件 context.cpp7489 行定义.

7489  : p(std::make_unique<Private>(cd,name))
7490 {
7491 }

◆ ~InheritanceNodeContext()

InheritanceNodeContext::~InheritanceNodeContext ( )
virtual

在文件 context.cpp7493 行定义.

7494 {
7495 }

成员函数说明

◆ alloc()

static TemplateStructIntfPtr InheritanceNodeContext::alloc ( const ClassDef cd,
const QCString name 
)
inlinestatic

在文件 context.h963 行定义.

964  { return std::static_pointer_cast<TemplateStructIntf>(std::make_shared<InheritanceNodeContext>(cd,name)); }

被这些函数引用 InheritanceListContext::Private::addClass().

◆ fields()

StringVector InheritanceNodeContext::fields ( ) const
virtual

Return the list of fields.

实现了 TemplateStructIntf.

在文件 context.cpp7502 行定义.

7503 {
7504  return p->fields();
7505 }

引用了 p.

◆ get()

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

Gets the value for a field name.

参数
[in]nameThe name of the field.

实现了 TemplateStructIntf.

在文件 context.cpp7497 行定义.

7498 {
7499  return p->get(name);
7500 }

引用了 p.

类成员变量说明

◆ p

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

在文件 context.h974 行定义.

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


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