Lempek

Node.h

May 25th, 2014
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. class Node {
  2. public:
  3.     Node(int data = 0) : data(data), next(nullptr), previous(nullptr){}
  4.     ~Node();
  5.    
  6.     int data;
  7.     Node* next;
  8.     Node* previous;
  9. };
Advertisement
Add Comment
Please, Sign In to add comment