Doxygen
InheritedMemberInfoContext类 参考

#include <context.h>

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

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. 更多...
 
 InheritedMemberInfoContext (const ClassDef *cd, std::unique_ptr< MemberList > &&ml, const QCString &title)
 
virtual ~InheritedMemberInfoContext ()
 
- Public 成员函数 继承自 TemplateStructIntf
virtual ~TemplateStructIntf ()
 Destroys the struct 更多...
 

静态 Public 成员函数

static TemplateStructIntfPtr alloc (const ClassDef *cd, std::unique_ptr< MemberList > &&ml, const QCString &title)
 

Private 属性

std::unique_ptr< Privatep
 

详细描述

在文件 context.h1120 行定义.

构造及析构函数说明

◆ InheritedMemberInfoContext()

InheritedMemberInfoContext::InheritedMemberInfoContext ( const ClassDef cd,
std::unique_ptr< MemberList > &&  ml,
const QCString title 
)

在文件 context.cpp8045 行定义.

8046  : p(std::make_unique<Private>(cd,std::move(ml),title))
8047 {
8048 }

◆ ~InheritedMemberInfoContext()

InheritedMemberInfoContext::~InheritedMemberInfoContext ( )
virtual

在文件 context.cpp8050 行定义.

8051 {
8052 }

成员函数说明

◆ alloc()

static TemplateStructIntfPtr InheritedMemberInfoContext::alloc ( const ClassDef cd,
std::unique_ptr< MemberList > &&  ml,
const QCString title 
)
inlinestatic

在文件 context.h1123 行定义.

1124  { return std::static_pointer_cast<TemplateStructIntf>(std::make_shared<InheritedMemberInfoContext>(cd,std::move(ml),title)); }

被这些函数引用 InheritedMemberInfoListContext::Private::addInheritedMembers().

◆ fields()

StringVector InheritedMemberInfoContext::fields ( ) const
virtual

Return the list of fields.

实现了 TemplateStructIntf.

在文件 context.cpp8059 行定义.

8060 {
8061  return p->fields();
8062 }

引用了 p.

◆ get()

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

Gets the value for a field name.

参数
[in]nameThe name of the field.

实现了 TemplateStructIntf.

在文件 context.cpp8054 行定义.

8055 {
8056  return p->get(name);
8057 }

引用了 p.

类成员变量说明

◆ p

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

在文件 context.h1134 行定义.

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


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