Urho3D::List< T >::Node Struct Reference
Urho3D::List< T >::Node Struct Reference
List node. More...
#include <Urho3D/Container/List.h>
Inheritance diagram for Urho3D::List< T >::Node:
Collaboration diagram for Urho3D::List< T >::Node:
Public Member Functions | |
| Node () | |
| Construct undefined. | |
| Node (const T &value) | |
| Construct with value. | |
| Node * | Next () const |
| Return next node. | |
| Node * | Prev () |
| Return previous node. | |
Public Member Functions inherited from Urho3D::ListNodeBase | |
| ListNodeBase () | |
| Construct. | |
Public Attributes | |
| T | value_ |
| Node value. | |
Public Attributes inherited from Urho3D::ListNodeBase | |
| ListNodeBase * | prev_ |
| Previous node. | |
| ListNodeBase * | next_ |
| Next node. | |
Detailed Description
template<class T>
struct Urho3D::List< T >::Node
List node.
The documentation for this struct was generated from the following file:
- Source/Urho3D/Container/List.h

Public Member Functions inherited from