Classes | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes | List of all members
InheritanceGraphContext Class Reference

#include <context.h>

Inheritance diagram for InheritanceGraphContext:
RefCountedContext TemplateStructIntf

Classes

class  Private
 

Public Member Functions

virtual TemplateVariant get (const char *name) const
 
virtual int addRef ()
 
virtual int release ()
 
- Public Member Functions inherited from RefCountedContext
 RefCountedContext (const char *)
 
virtual ~RefCountedContext ()
 
int addRef ()
 
int release ()
 
- Public Member Functions inherited from TemplateStructIntf
virtual ~TemplateStructIntf ()
 

Static Public Member Functions

static InheritanceGraphContextalloc (DotGfxHierarchyTable *hierarchy, DotNode *n, int id)
 

Private Member Functions

 InheritanceGraphContext (DotGfxHierarchyTable *hierarchy, DotNode *n, int id)
 
 ~InheritanceGraphContext ()
 

Private Attributes

Privatep
 

Detailed Description

Definition at line 427 of file context.h.

Constructor & Destructor Documentation

InheritanceGraphContext::InheritanceGraphContext ( DotGfxHierarchyTable hierarchy,
DotNode n,
int  id 
)
private

Definition at line 8328 of file context.cpp.

8329  : RefCountedContext("InheritanceGraphContext")
8330 {
8331  p = new Private(hierarchy,n,id);
8332 }
Definition: types.h:26
RefCountedContext(const char *)
Definition: context.h:109
InheritanceGraphContext::~InheritanceGraphContext ( )
private

Definition at line 8334 of file context.cpp.

8335 {
8336  delete p;
8337 }

Member Function Documentation

virtual int InheritanceGraphContext::addRef ( )
inlinevirtual

Increase object's reference count

Implements TemplateStructIntf.

Definition at line 435 of file context.h.

435 { return RefCountedContext::addRef(); }
static InheritanceGraphContext* InheritanceGraphContext::alloc ( DotGfxHierarchyTable hierarchy,
DotNode n,
int  id 
)
inlinestatic

Definition at line 430 of file context.h.

431  { return new InheritanceGraphContext(hierarchy,n,id); }
InheritanceGraphContext(DotGfxHierarchyTable *hierarchy, DotNode *n, int id)
Definition: context.cpp:8328
TemplateVariant InheritanceGraphContext::get ( const char *  name) const
virtual

Gets the value for a field name.

Parameters
[in]nameThe name of the field.

Implements TemplateStructIntf.

Definition at line 8339 of file context.cpp.

8340 {
8341  return p->get(name);
8342 }
static QCString name
Definition: declinfo.cpp:673
TemplateVariant get(const char *n) const
Definition: context.cpp:8298
virtual int InheritanceGraphContext::release ( )
inlinevirtual

Decreases object's referenc count, destroy object if 0

Implements TemplateStructIntf.

Definition at line 436 of file context.h.

436 { return RefCountedContext::release(); }

Member Data Documentation

Private* InheritanceGraphContext::p
private

Definition at line 441 of file context.h.


The documentation for this class was generated from the following files: