#include <Notifier.h>
Public Member Functions | |
void_list () | |
void_list (const void_list &) | |
~void_list () | |
bool | push_back (void *p) |
bool | erase (void *p) |
unsigned int | size () const |
void * | operator[] (unsigned int index) |
bool | contains (void *p) const |
It is a disgusting thing to include in this library when we should just be using std::vector instead. In fact, this class is implemented with a std::vector. The reason for its inclusion is the fact that it redces the size of libtse3.so.0.0.0 by about a third. This can be accounted for by the reduction in size of link names.
|
|
|
|
|
|
|
Push a new void* onto the back of the list. You cannot insert a duplicate entry.
|
|
Returns true if
|
|
Returns the number of void*s in the void_list.
|
|
Returns the void*s at index
|
|
Returns whether or not
|