CppCommon  1.0.4.1
C++ Common Library
Public Member Functions | Public Attributes | List of all members
CppCommon::List< T >::Node Struct Reference

List node. More...

#include <list.h>

Public Member Functions

 Node ()
 

Public Attributes

T * next
 Pointer to the next list node. More...
 
T * prev
 Pointer to the previous list node. More...
 

Detailed Description

template<typename T>
struct CppCommon::List< T >::Node

List node.

Definition at line 172 of file list.h.

Constructor & Destructor Documentation

◆ Node()

template<typename T >
CppCommon::List< T >::Node::Node ( )
inline

Definition at line 177 of file list.h.

Member Data Documentation

◆ next

template<typename T >
T* CppCommon::List< T >::Node::next

Pointer to the next list node.

Definition at line 174 of file list.h.

◆ prev

template<typename T >
T* CppCommon::List< T >::Node::prev

Pointer to the previous list node.

Definition at line 175 of file list.h.


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