#include "Node.h"
class List
{
public:
List();
void insert( int item );
int get( int n );
void erase( int n );
~List();
private:
Node* head;
};