aboutsummaryrefslogtreecommitdiff
path: root/Inclass 10/Node.h
blob: 8c119842df0822f72ddfd2676ea111d3355cdde3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef NODE_HEADER
#define NODE_HEADER
#include "Header.h"


struct Node
{
	int _data;
	Node* next;
};



#endif NODE_HEADER