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

#include <context.h>

Inheritance diagram for SymbolIndexContext:
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 SymbolIndexContextalloc (const SearchIndexList *sl, const QCString &name)
 

Private Member Functions

 SymbolIndexContext (const SearchIndexList *sl, const QCString &name)
 
 ~SymbolIndexContext ()
 

Private Attributes

Privatep
 

Detailed Description

Definition at line 1266 of file context.h.

Constructor & Destructor Documentation

SymbolIndexContext::SymbolIndexContext ( const SearchIndexList sl,
const QCString name 
)
private

Definition at line 9760 of file context.cpp.

9761  : RefCountedContext("SymbolIndexContext")
9762 {
9763  p = new Private(sl,name);
9764 }
Definition: types.h:26
RefCountedContext(const char *)
Definition: context.h:109
SymbolIndexContext::~SymbolIndexContext ( )
private

Definition at line 9766 of file context.cpp.

9767 {
9768  delete p;
9769 }

Member Function Documentation

virtual int SymbolIndexContext::addRef ( )
inlinevirtual

Increase object's reference count

Implements TemplateStructIntf.

Definition at line 1274 of file context.h.

1274 { return RefCountedContext::addRef(); }
static SymbolIndexContext* SymbolIndexContext::alloc ( const SearchIndexList sl,
const QCString name 
)
inlinestatic

Definition at line 1269 of file context.h.

1270  { return new SymbolIndexContext(sl,name); }
SymbolIndexContext(const SearchIndexList *sl, const QCString &name)
Definition: context.cpp:9760
TemplateVariant SymbolIndexContext::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 9771 of file context.cpp.

9772 {
9773  return p->get(name);
9774 }
static QCString name
Definition: declinfo.cpp:673
TemplateVariant get(const char *n) const
Definition: context.cpp:9726
virtual int SymbolIndexContext::release ( )
inlinevirtual

Decreases object's referenc count, destroy object if 0

Implements TemplateStructIntf.

Definition at line 1275 of file context.h.

1275 { return RefCountedContext::release(); }

Member Data Documentation

Private* SymbolIndexContext::p
private

Definition at line 1280 of file context.h.


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