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

#include <context.h>

Inheritance diagram for InheritedMemberInfoContext:
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 InheritedMemberInfoContextalloc (ClassDef *cd, MemberList *ml, const QCString &title)
 

Private Member Functions

 InheritedMemberInfoContext (ClassDef *cd, MemberList *ml, const QCString &title)
 
 ~InheritedMemberInfoContext ()
 

Private Attributes

Privatep
 

Detailed Description

Definition at line 1071 of file context.h.

Constructor & Destructor Documentation

InheritedMemberInfoContext::InheritedMemberInfoContext ( ClassDef cd,
MemberList ml,
const QCString title 
)
private

Definition at line 9072 of file context.cpp.

9073  : RefCountedContext("InheritedMemberInfoContext")
9074 {
9075  p = new Private(cd,ml,title);
9076 }
Definition: types.h:26
RefCountedContext(const char *)
Definition: context.h:109
InheritedMemberInfoContext::~InheritedMemberInfoContext ( )
private

Definition at line 9078 of file context.cpp.

9079 {
9080  delete p;
9081 }

Member Function Documentation

virtual int InheritedMemberInfoContext::addRef ( )
inlinevirtual

Increase object's reference count

Implements TemplateStructIntf.

Definition at line 1079 of file context.h.

1079 { return RefCountedContext::addRef(); }
static InheritedMemberInfoContext* InheritedMemberInfoContext::alloc ( ClassDef cd,
MemberList ml,
const QCString title 
)
inlinestatic

Definition at line 1074 of file context.h.

1075  { return new InheritedMemberInfoContext(cd,ml,title); }
InheritedMemberInfoContext(ClassDef *cd, MemberList *ml, const QCString &title)
Definition: context.cpp:9072
TemplateVariant InheritedMemberInfoContext::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 9083 of file context.cpp.

9084 {
9085  return p->get(name);
9086 }
static QCString name
Definition: declinfo.cpp:673
TemplateVariant get(const char *n) const
Definition: context.cpp:9015
virtual int InheritedMemberInfoContext::release ( )
inlinevirtual

Decreases object's referenc count, destroy object if 0

Implements TemplateStructIntf.

Definition at line 1080 of file context.h.

1080 { return RefCountedContext::release(); }

Member Data Documentation

Private* InheritedMemberInfoContext::p
private

Definition at line 1085 of file context.h.


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