#include <RegistryManager.h>
Public Member Functions | |
RegistryManager () | |
virtual | ~RegistryManager () |
void | AddItem (T *item) |
void | RemoveItem (T *item) |
void | RemoveItem (void) |
void | BeginIterate (void) |
T * | Iterate (void) |
|
The ctor performs some basic initialisation |
|
The dtor makes sure everything is tidy |
|
Adds an item to the list. This does not allocate an item as this is left to the user to do
|
|
Starts the iteration of the items in the list |
|
Iterates through the items in the list
|
|
Removes the current iterated item |
|
Removes an item from the list but does not free the item as this is left to the user to do
|