sipxmedialib
Version 3.3
|
Very simple single-linked list implementation, used by codecs' loading infrastructure. More...
#include <MpPlgStaffV1.h>
Public Member Functions | |
Creators | |
MpStaticCodecSimpleList () | |
Default Constructor. More... | |
Manipulators | |
MpStaticCodecSimpleList * | bound (MpStaticCodecSimpleList *newItem) |
Add this element head of the list and return pointer to it. More... | |
Accessors | |
MpStaticCodecSimpleList * | getNext () const |
Return pointer to next element. More... | |
Private Attributes | |
MpStaticCodecSimpleList * | mNext |
Pointer to next element in list. More... | |
Very simple single-linked list implementation, used by codecs' loading infrastructure.
We do not use Utl* lists to avoid excessive locking and complexity they introduce.
|
inline |
Default Constructor.
|
inline |
Add this element head of the list and return pointer to it.
|
inline |
Return pointer to next element.
|
private |
Pointer to next element in list.