summaryrefslogtreecommitdiff
path: root/algo1w3/IntLink.cpp
blob: a54d44978045f3d62aa45004d965282a052c5dc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "IntLink.h"

IntLink::IntLink() { }

IntLink::IntLink(int value, IntLink* next) {
	this->value = value;
	this->next = next;
}

IntLink::~IntLink() { }