scire
Sadh's C++ Impromptu Routines Ensemble
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
scire::SinglyList< Type, SzType >::Node Struct Reference

represent an item node in Singly Linked List More...

#include <linkedlist.hpp>

Public Member Functions

 Node (const Type &newitem, Node *nextNode)
 pointer to next item More...
 
const Type & Item () const
 

Public Attributes

Type item
 
Nodenext
 item at this node More...
 

Detailed Description

template<typename Type, typename SzType = int>
struct scire::SinglyList< Type, SzType >::Node

represent an item node in Singly Linked List

Definition at line 93 of file linkedlist.hpp.

Constructor & Destructor Documentation

template<typename Type , typename SzType = int>
scire::SinglyList< Type, SzType >::Node::Node ( const Type &  newitem,
Node nextNode 
)
inline

pointer to next item

Definition at line 98 of file linkedlist.hpp.

Member Function Documentation

template<typename Type , typename SzType = int>
const Type& scire::SinglyList< Type, SzType >::Node::Item ( ) const
inline

Definition at line 100 of file linkedlist.hpp.

Member Data Documentation

template<typename Type , typename SzType = int>
Type scire::SinglyList< Type, SzType >::Node::item

Definition at line 95 of file linkedlist.hpp.

template<typename Type , typename SzType = int>
Node* scire::SinglyList< Type, SzType >::Node::next

item at this node

Definition at line 96 of file linkedlist.hpp.


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