Doxygen
FileContext类 参考

#include <context.h>

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

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

静态 Public 成员函数

static TemplateStructIntfPtr alloc (const FileDef *fd)
 

Private 属性

std::unique_ptr< Privatep
 

详细描述

在文件 context.h257 行定义.

构造及析构函数说明

◆ FileContext()

FileContext::FileContext ( const FileDef fd)

在文件 context.cpp3095 行定义.

3095  : p(std::make_unique<Private>(fd))
3096 {
3097 }

◆ ~FileContext()

FileContext::~FileContext ( )
virtual

在文件 context.cpp3099 行定义.

3100 {
3101 }

成员函数说明

◆ alloc()

static TemplateStructIntfPtr FileContext::alloc ( const FileDef fd)
inlinestatic

◆ fields()

StringVector FileContext::fields ( ) const
virtual

Return the list of fields.

实现了 TemplateStructIntf.

在文件 context.cpp3108 行定义.

3109 {
3110  return p->fields();
3111 }

引用了 p.

◆ get()

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

Gets the value for a field name.

参数
[in]nameThe name of the field.

实现了 TemplateStructIntf.

在文件 context.cpp3103 行定义.

3104 {
3105  return p->get(n);
3106 }

引用了 p.

类成员变量说明

◆ p

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

在文件 context.h271 行定义.

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


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