Doxygen
ArgumentListContext类 参考

#include <context.h>

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

class  Private
 

Public 成员函数

virtual uint count () const
 Returns the number of elements in the list 更多...
 
virtual TemplateVariant at (uint index) const
 Returns the element at index position index. 更多...
 
virtual TemplateListIntf::ConstIteratorPtr createIterator () const
 Creates a new iterator for this list. 更多...
 
 ArgumentListContext ()
 
 ArgumentListContext (const ArgumentList &al, const Definition *def, const QCString &relPath)
 
virtual ~ArgumentListContext ()
 
- Public 成员函数 继承自 TemplateListIntf
virtual ~TemplateListIntf ()
 Destroys the list 更多...
 

静态 Public 成员函数

static TemplateListIntfPtr alloc ()
 
static TemplateListIntfPtr alloc (const ArgumentList &al, const Definition *def, const QCString &relPath)
 

Private 属性

std::unique_ptr< Privatep
 

额外继承的成员函数

- Public 类型 继承自 TemplateListIntf
using ConstIteratorPtr = std::unique_ptr< ConstIterator >
 

详细描述

在文件 context.h1203 行定义.

构造及析构函数说明

◆ ArgumentListContext() [1/2]

ArgumentListContext::ArgumentListContext ( )

在文件 context.cpp8298 行定义.

8298  : p(std::make_unique<Private>())
8299 {
8300 }

◆ ArgumentListContext() [2/2]

ArgumentListContext::ArgumentListContext ( const ArgumentList al,
const Definition def,
const QCString relPath 
)

在文件 context.cpp8302 行定义.

8303  : p(std::make_unique<Private>())
8304 {
8305  for (const Argument &arg : list)
8306  {
8307  p->addArgument(arg,def,relPath);
8308  }
8309 }

引用了 p.

◆ ~ArgumentListContext()

ArgumentListContext::~ArgumentListContext ( )
virtual

在文件 context.cpp8311 行定义.

8312 {
8313 }

成员函数说明

◆ alloc() [1/2]

◆ alloc() [2/2]

static TemplateListIntfPtr ArgumentListContext::alloc ( const ArgumentList al,
const Definition def,
const QCString relPath 
)
inlinestatic

在文件 context.h1208 行定义.

1209  { return std::static_pointer_cast<TemplateListIntf>(std::make_shared<ArgumentListContext>(al,def,relPath)); }

◆ at()

TemplateVariant ArgumentListContext::at ( uint  index) const
virtual

Returns the element at index position index.

实现了 TemplateListIntf.

在文件 context.cpp8321 行定义.

8322 {
8323  return p->at(index);
8324 }

引用了 p.

◆ count()

uint ArgumentListContext::count ( ) const
virtual

Returns the number of elements in the list

实现了 TemplateListIntf.

在文件 context.cpp8316 行定义.

8317 {
8318  return p->count();
8319 }

引用了 p.

◆ createIterator()

TemplateListIntf::ConstIteratorPtr ArgumentListContext::createIterator ( ) const
virtual

Creates a new iterator for this list.

注解
the user should call delete on the returned pointer.

实现了 TemplateListIntf.

在文件 context.cpp8326 行定义.

8327 {
8328  return p->createIterator();
8329 }

引用了 p.

类成员变量说明

◆ p

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

在文件 context.h1221 行定义.

被这些函数引用 ArgumentListContext(), at(), count() , 以及 createIterator().


该类的文档由以下文件生成:
Argument
This class contains the information about the argument of a function or template
Definition: arguments.h:26
ArgumentListContext::p
std::unique_ptr< Private > p
Definition: context.h:1221