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

#include <context.h>

Inheritance diagram for InheritanceNodeContext:
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 InheritanceNodeContextalloc (ClassDef *cd, const QCString &name)
 

Private Member Functions

 InheritanceNodeContext (ClassDef *cd, const QCString &name)
 
 ~InheritanceNodeContext ()
 

Private Attributes

Privatep
 

Detailed Description

Definition at line 909 of file context.h.

Constructor & Destructor Documentation

InheritanceNodeContext::InheritanceNodeContext ( ClassDef cd,
const QCString name 
)
private

Definition at line 8388 of file context.cpp.

8388  : RefCountedContext("InheritanceNodeContext")
8389 {
8390  p = new Private(cd,name);
8391 }
Definition: types.h:26
RefCountedContext(const char *)
Definition: context.h:109
InheritanceNodeContext::~InheritanceNodeContext ( )
private

Definition at line 8393 of file context.cpp.

8394 {
8395  delete p;
8396 }

Member Function Documentation

virtual int InheritanceNodeContext::addRef ( )
inlinevirtual

Increase object's reference count

Implements TemplateStructIntf.

Definition at line 917 of file context.h.

917 { return RefCountedContext::addRef(); }
static InheritanceNodeContext* InheritanceNodeContext::alloc ( ClassDef cd,
const QCString name 
)
inlinestatic

Definition at line 912 of file context.h.

913  { return new InheritanceNodeContext(cd,name); }
InheritanceNodeContext(ClassDef *cd, const QCString &name)
Definition: context.cpp:8388
TemplateVariant InheritanceNodeContext::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 8398 of file context.cpp.

8399 {
8400  return p->get(name);
8401 }
static QCString name
Definition: declinfo.cpp:673
TemplateVariant get(const char *n) const
Definition: context.cpp:8362
virtual int InheritanceNodeContext::release ( )
inlinevirtual

Decreases object's referenc count, destroy object if 0

Implements TemplateStructIntf.

Definition at line 918 of file context.h.

918 { return RefCountedContext::release(); }

Member Data Documentation

Private* InheritanceNodeContext::p
private

Definition at line 923 of file context.h.


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