aboutsummaryrefslogtreecommitdiff
path: root/Inclass 10/Node.h
blob: abfe60593fd5a9acad8bc1704e3ce6366aadcc5c (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