Rudiments
linkedlistnode.h
1 // Copyright (c) 1999-2018 David Muse
2 // See the COPYING file for more information
3 
4  void setNext(linkedlistnode<valuetype> *next);
5  void setPrevious(linkedlistnode<valuetype> *previous);
6 
7  protected:
8  valuetype value;
10  linkedlistnode<valuetype> *previous;
Definition: linkedlist.h:11