|
IniFile
|
Element of double linked lists. More...
#include <PtlDVElement.h>
Public Member Functions | |
| DVElement (void *pDataObject, DVElement *pNext, DVElement *pPrevious) | |
Public Attributes | |
| void * | m_pData |
| DVElement * | m_pNextElement |
| DVElement * | m_pPreviousElement |
Element of double linked lists.
This class references an 'object' via a void-pointer. Additionally, a predecessor and a successor list element can be referenced.
Constructor with parameter passing
| [in] | pDataObject | The object which is kept in a list by this DVElement; comes in m_pData |
| [in] | pNext | The following DVElement can be passed; comes in m_pNextElement |
| [in] | pPrevious | The preceding DVElement can be passed; comes in m_pPreviousElement |
| void* ptl::DVElement::m_pData |
Pointer to the data object in the list.