The Pedigree Project  0.1
Public Member Functions | Public Attributes | List of all members
_ListNode_t< T > Struct Template Reference

One node in the list. More...

#include <List.h>

+ Collaboration diagram for _ListNode_t< T >:

Public Member Functions

_ListNode_tnext ()
 
_ListNode_tprevious ()
 

Public Attributes

_ListNode_tm_Next
 
_ListNode_tm_Previous
 
value
 

Detailed Description

template<typename T>
struct _ListNode_t< T >

One node in the list.

One node in the list

Parameters
[in]Tthe element type

Definition at line 37 of file List.h.

Member Function Documentation

template<typename T >
_ListNode_t* _ListNode_t< T >::next ( )
inline

Get the next data structure in the list

Returns
pointer to the next data structure in the list

Definition at line 44 of file List.h.

References _ListNode_t< T >::m_Next.

template<typename T >
_ListNode_t* _ListNode_t< T >::previous ( )
inline

Get the previous data structure in the list

Returns
pointer to the previous data structure in the list

Definition at line 50 of file List.h.

References _ListNode_t< T >::m_Previous.

Member Data Documentation

template<typename T >
_ListNode_t* _ListNode_t< T >::m_Next
template<typename T >
_ListNode_t* _ListNode_t< T >::m_Previous
template<typename T >
T _ListNode_t< T >::value

The documentation for this struct was generated from the following file: