Facebook
From Social Madrill, 7 Years ago, written in Plain Text.
This paste is a reply to Untitled from Wet Duck - view diff
Embed
Download Paste or View Raw
Hits: 364
  1. template<class T>
  2. inline void Element<T>::setPrevious(Element *previous)
  3. {
  4.         this->previous = previous;
  5. }
  6.  
  7. template<class T>
  8. inline Element<T> & Element<T>::getPrevious()
  9. {
  10.         return *previous;
  11. }
  12.