Doxygen
InheritanceGraphContext类 参考

#include <context.h>

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

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. 更多...
 
 InheritanceGraphContext (DotGfxHierarchyTablePtr hierarchy, DotNode *n, int id)
 
virtual ~InheritanceGraphContext ()
 
- Public 成员函数 继承自 TemplateStructIntf
virtual ~TemplateStructIntf ()
 Destroys the struct 更多...
 

静态 Public 成员函数

static TemplateStructIntfPtr alloc (DotGfxHierarchyTablePtr hierarchy, DotNode *n, int id)
 

Private 属性

std::unique_ptr< Privatep
 

详细描述

在文件 context.h399 行定义.

构造及析构函数说明

◆ InheritanceGraphContext()

InheritanceGraphContext::InheritanceGraphContext ( DotGfxHierarchyTablePtr  hierarchy,
DotNode n,
int  id 
)

在文件 context.cpp7435 行定义.

7435  : p(std::make_unique<Private>(hierarchy,n,id))
7436 {
7437 }

◆ ~InheritanceGraphContext()

InheritanceGraphContext::~InheritanceGraphContext ( )
virtual

在文件 context.cpp7439 行定义.

7440 {
7441 }

成员函数说明

◆ alloc()

static TemplateStructIntfPtr InheritanceGraphContext::alloc ( DotGfxHierarchyTablePtr  hierarchy,
DotNode n,
int  id 
)
inlinestatic

在文件 context.h402 行定义.

403  { return std::static_pointer_cast<TemplateStructIntf>(std::make_shared<InheritanceGraphContext>(hierarchy,n,id)); }

被这些函数引用 ClassHierarchyContext::Private::createDiagrams().

◆ fields()

StringVector InheritanceGraphContext::fields ( ) const
virtual

Return the list of fields.

实现了 TemplateStructIntf.

在文件 context.cpp7448 行定义.

7449 {
7450  return p->fields();
7451 }

引用了 p.

◆ get()

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

Gets the value for a field name.

参数
[in]nameThe name of the field.

实现了 TemplateStructIntf.

在文件 context.cpp7443 行定义.

7444 {
7445  return p->get(name);
7446 }

引用了 p.

类成员变量说明

◆ p

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

在文件 context.h413 行定义.

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


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