Doxygen
IncludeInfoContext类 参考

#include <context.h>

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

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. 更多...
 
 IncludeInfoContext (const IncludeInfo *, SrcLangExt lang)
 
virtual ~IncludeInfoContext ()
 
- Public 成员函数 继承自 TemplateStructIntf
virtual ~TemplateStructIntf ()
 Destroys the struct 更多...
 

静态 Public 成员函数

static TemplateStructIntfPtr alloc (const IncludeInfo *info, SrcLangExt lang)
 

Private 属性

std::unique_ptr< Privatep
 

详细描述

在文件 context.h155 行定义.

构造及析构函数说明

◆ IncludeInfoContext()

IncludeInfoContext::IncludeInfoContext ( const IncludeInfo info,
SrcLangExt  lang 
)

在文件 context.cpp1651 行定义.

1651  : p(std::make_unique<Private>(info,lang))
1652 {
1653 }

◆ ~IncludeInfoContext()

IncludeInfoContext::~IncludeInfoContext ( )
virtual

在文件 context.cpp1655 行定义.

1656 {
1657 }

成员函数说明

◆ alloc()

static TemplateStructIntfPtr IncludeInfoContext::alloc ( const IncludeInfo info,
SrcLangExt  lang 
)
inlinestatic

在文件 context.h158 行定义.

159  { return std::static_pointer_cast<TemplateStructIntf>(std::make_shared<IncludeInfoContext>(info,lang)); }

被这些函数引用 ClassContext::Private::createIncludeInfo(), ConceptContext::Private::createIncludeInfo() , 以及 IncludeInfoListContext::Private::Private().

◆ fields()

StringVector IncludeInfoContext::fields ( ) const
virtual

Return the list of fields.

实现了 TemplateStructIntf.

在文件 context.cpp1664 行定义.

1665 {
1666  return p->fields();
1667 }

引用了 p.

◆ get()

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

Gets the value for a field name.

参数
[in]nameThe name of the field.

实现了 TemplateStructIntf.

在文件 context.cpp1659 行定义.

1660 {
1661  return p->get(n);
1662 }

引用了 p.

类成员变量说明

◆ p

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

在文件 context.h169 行定义.

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


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