summaryrefslogtreecommitdiff
path: root/algo1w3/IntLink.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'algo1w3/IntLink.cpp')
-rw-r--r--algo1w3/IntLink.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/algo1w3/IntLink.cpp b/algo1w3/IntLink.cpp
new file mode 100644
index 0000000..a54d449
--- /dev/null
+++ b/algo1w3/IntLink.cpp
@@ -0,0 +1,11 @@
+
+#include "IntLink.h"
+
+IntLink::IntLink() { }
+
+IntLink::IntLink(int value, IntLink* next) {
+ this->value = value;
+ this->next = next;
+}
+
+IntLink::~IntLink() { }