My Project
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Classes | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes | List of all members
SearchIndexContext Class Reference

#include <context.h>

Inheritance diagram for SearchIndexContext:
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 SearchIndexContextalloc (const SearchIndexInfo *info)
 

Private Member Functions

 SearchIndexContext (const SearchIndexInfo *info)
 
 ~SearchIndexContext ()
 

Private Attributes

Privatep
 

Detailed Description

Definition at line 1308 of file context.h.

Constructor & Destructor Documentation

SearchIndexContext::SearchIndexContext ( const SearchIndexInfo info)
private

Definition at line 9886 of file context.cpp.

References p, and Private.

Referenced by alloc().

: RefCountedContext("SearchIndexContext")
{
p = new Private(info);
}
SearchIndexContext::~SearchIndexContext ( )
private

Definition at line 9892 of file context.cpp.

References p.

{
delete p;
}

Member Function Documentation

virtual int SearchIndexContext::addRef ( )
inlinevirtual

Increase object's reference count

Implements TemplateStructIntf.

Definition at line 1316 of file context.h.

References RefCountedContext::addRef().

static SearchIndexContext* SearchIndexContext::alloc ( const SearchIndexInfo info)
inlinestatic

Definition at line 1311 of file context.h.

References SearchIndexContext().

Referenced by SearchIndicesContext::Private::Private().

{ return new SearchIndexContext(info); }
TemplateVariant SearchIndexContext::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 9897 of file context.cpp.

References SearchIndexContext::Private::get(), and p.

{
return p->get(name);
}
virtual int SearchIndexContext::release ( )
inlinevirtual

Decreases object's referenc count, destroy object if 0

Implements TemplateStructIntf.

Definition at line 1317 of file context.h.

References RefCountedContext::release().

Member Data Documentation

Private* SearchIndexContext::p
private

Definition at line 1322 of file context.h.

Referenced by get(), SearchIndexContext(), and ~SearchIndexContext().


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