Node used inside other data structures.
More...
#include <Node.hpp>
template<class T>
class Node< T >
Node used inside other data structures.
- Author
- Douglas De Rizzo Meneghetti (dougl.nosp@m.asri.nosp@m.zzom@.nosp@m.gmai.nosp@m.l.com)
- Date
- 2017-6-8Node used inside other data structures. Uses templates to allow storing any kind of object.
- Template Parameters
-
T | the type of object the node will store. |
Definition at line 15 of file Node.hpp.
◆ Node()
◆ ~Node()
◆ getNext()
◆ getPrevious()
◆ getValue()
template<class T>
T Node< T >::getValue |
( |
| ) |
const |
|
inline |
◆ setNext()
template<class T>
void Node< T >::setNext |
( |
Node< T > * |
next | ) |
|
|
inline |
◆ setPrevious()
template<class T>
void Node< T >::setPrevious |
( |
Node< T > * |
previous | ) |
|
|
inline |
◆ setValue()
template<class T>
void Node< T >::setValue |
( |
T |
value | ) |
|
|
inline |
◆ next
◆ previous
◆ value
The documentation for this class was generated from the following file: