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

#include <context.h>

Inheritance diagram for ModuleListContext:
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 ()
 
void addModules (const GroupSDict &)
 
void addModules (const GroupList &)
 
- 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 ModuleListContextalloc ()
 

Private Member Functions

 ModuleListContext ()
 
 ~ModuleListContext ()
 

Private Attributes

Privatep
 

Detailed Description

Definition at line 748 of file context.h.

Constructor & Destructor Documentation

ModuleListContext::ModuleListContext ( )
private

Definition at line 7486 of file context.cpp.

References ModuleListContext::Private::addModules(), p, and Private.

Referenced by alloc().

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

Definition at line 7492 of file context.cpp.

References p.

{
delete p;
}

Member Function Documentation

void ModuleListContext::addModules ( const GroupSDict )
void ModuleListContext::addModules ( const GroupList )
virtual int ModuleListContext::addRef ( )
inlinevirtual

Increase object's reference count

Implements TemplateListIntf.

Definition at line 757 of file context.h.

References RefCountedContext::addRef().

static ModuleListContext* ModuleListContext::alloc ( )
inlinestatic

Definition at line 751 of file context.h.

References ModuleListContext().

Referenced by generateOutputViaTemplate().

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

Returns the element at index position index.

Implements TemplateListIntf.

Definition at line 7503 of file context.cpp.

References GenericNodeListContext::at(), and p.

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

Returns the number of elements in the list

Implements TemplateListIntf.

Definition at line 7498 of file context.cpp.

References GenericNodeListContext::count(), and p.

{
return p->count();
}
TemplateListIntf::ConstIterator * ModuleListContext::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 7508 of file context.cpp.

References GenericNodeListContext::createIterator(), and p.

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

Decreases object's referenc count, destroy object if 0

Implements TemplateListIntf.

Definition at line 758 of file context.h.

References RefCountedContext::release().

Member Data Documentation

Private* ModuleListContext::p
private

Definition at line 766 of file context.h.

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


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