Doxygen
ClassListContext类 参考

#include <context.h>

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

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. 更多...
 
 ClassListContext ()
 
virtual ~ClassListContext ()
 
- Public 成员函数 继承自 TemplateListIntf
virtual ~TemplateListIntf ()
 Destroys the list 更多...
 

静态 Public 成员函数

static TemplateListIntfPtr alloc ()
 

Private 属性

std::unique_ptr< Privatep
 

额外继承的成员函数

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

详细描述

在文件 context.h358 行定义.

构造及析构函数说明

◆ ClassListContext()

ClassListContext::ClassListContext ( )

在文件 context.cpp5019 行定义.

5019  : p(std::make_unique<Private>())
5020 {
5021  p->addClasses(*Doxygen::classLinkedMap);
5022  p->addClasses(*Doxygen::hiddenClassLinkedMap);
5023 }

引用了 Doxygen::classLinkedMap, Doxygen::hiddenClassLinkedMap , 以及 p.

◆ ~ClassListContext()

ClassListContext::~ClassListContext ( )
virtual

在文件 context.cpp5025 行定义.

5026 {
5027 }

成员函数说明

◆ alloc()

static TemplateListIntfPtr ClassListContext::alloc ( )
inlinestatic

在文件 context.h361 行定义.

362  { return std::static_pointer_cast<TemplateListIntf>(std::make_shared<ClassListContext>()); }

被这些函数引用 generateOutputViaTemplate().

◆ at()

TemplateVariant ClassListContext::at ( uint  index) const
virtual

Returns the element at index position index.

实现了 TemplateListIntf.

在文件 context.cpp5035 行定义.

5036 {
5037  return p->at(index);
5038 }

引用了 p.

◆ count()

uint ClassListContext::count ( ) const
virtual

Returns the number of elements in the list

实现了 TemplateListIntf.

在文件 context.cpp5030 行定义.

5031 {
5032  return p->count();
5033 }

引用了 p.

◆ createIterator()

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

Creates a new iterator for this list.

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

实现了 TemplateListIntf.

在文件 context.cpp5040 行定义.

5041 {
5042  return p->createIterator();
5043 }

引用了 p.

类成员变量说明

◆ p

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

在文件 context.h373 行定义.

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


该类的文档由以下文件生成:
Doxygen::hiddenClassLinkedMap
static ClassLinkedMap * hiddenClassLinkedMap
Definition: doxygen.h:79
ClassListContext::p
std::unique_ptr< Private > p
Definition: context.h:373
Doxygen::classLinkedMap
static ClassLinkedMap * classLinkedMap
Definition: doxygen.h:78