#include "IntLink.h" IntLink::IntLink() { } IntLink::IntLink(int value, IntLink* next) { this->value = value; this->next = next; } IntLink::~IntLink() { }