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
NamespaceListContext Class Reference

#include <context.h>

Inheritance diagram for NamespaceListContext:
RefCountedContext TemplateListIntf

Classes

class  Private
 

Public Member Functions

virtual int count () const
 
virtual TemplateVariant at (int index) const
 
virtual
TemplateListIntf::ConstIterator
createIterator () 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 TemplateListIntf
virtual ~TemplateListIntf ()
 

Static Public Member Functions

static NamespaceListContextalloc ()
 

Private Member Functions

 NamespaceListContext ()
 
 ~NamespaceListContext ()
 

Private Attributes

Privatep
 

Detailed Description

Definition at line 586 of file context.h.

Constructor & Destructor Documentation

NamespaceListContext::NamespaceListContext ( )
private

Definition at line 6848 of file context.cpp.

References NamespaceListContext::Private::addNamespaces(), Doxygen::namespaceSDict, p, and Private.

Referenced by alloc().

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

Definition at line 6854 of file context.cpp.

References p.

{
delete p;
}

Member Function Documentation

virtual int NamespaceListContext::addRef ( )
inlinevirtual

Increase object's reference count

Implements TemplateListIntf.

Definition at line 595 of file context.h.

References RefCountedContext::addRef().

static NamespaceListContext* NamespaceListContext::alloc ( )
inlinestatic

Definition at line 589 of file context.h.

References NamespaceListContext().

Referenced by generateOutputViaTemplate().

{ return new NamespaceListContext; }
TemplateVariant NamespaceListContext::at ( int  index) const
virtual

Returns the element at index position index.

Implements TemplateListIntf.

Definition at line 6865 of file context.cpp.

References GenericNodeListContext::at(), and p.

{
return p->at(index);
}
int NamespaceListContext::count ( ) const
virtual

Returns the number of elements in the list

Implements TemplateListIntf.

Definition at line 6860 of file context.cpp.

References GenericNodeListContext::count(), and p.

{
return p->count();
}
TemplateListIntf::ConstIterator * NamespaceListContext::createIterator ( ) const
virtual

Creates a new iterator for this list.

Note
the user should call delete on the returned pointer.

Implements TemplateListIntf.

Definition at line 6870 of file context.cpp.

References GenericNodeListContext::createIterator(), and p.

{
return p->createIterator();
}
virtual int NamespaceListContext::release ( )
inlinevirtual

Decreases object's referenc count, destroy object if 0

Implements TemplateListIntf.

Definition at line 596 of file context.h.

References RefCountedContext::release().

Member Data Documentation

Private* NamespaceListContext::p
private

Definition at line 601 of file context.h.

Referenced by at(), count(), createIterator(), NamespaceListContext(), and ~NamespaceListContext().


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