aboutsummaryrefslogtreecommitdiff
path: root/CST 126/Homework3/SinglyLinkedList.hpp
diff options
context:
space:
mode:
authorrPatrickWarner <[email protected]>2024-05-22 19:42:15 -0700
committerrPatrickWarner <[email protected]>2024-05-22 19:42:15 -0700
commit2977e76af7007f470227ccbd6a7e3cd9dd1f4bb3 (patch)
tree959af9b8c84de286dda882fb9119feebefd92ffd /CST 126/Homework3/SinglyLinkedList.hpp
parentunit tests added (diff)
downloadhomework-1-reecepwarner-UnitTesting.tar.xz
homework-1-reecepwarner-UnitTesting.zip
unit test and memory check addedUnitTesting
Diffstat (limited to 'CST 126/Homework3/SinglyLinkedList.hpp')
-rw-r--r--CST 126/Homework3/SinglyLinkedList.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/CST 126/Homework3/SinglyLinkedList.hpp b/CST 126/Homework3/SinglyLinkedList.hpp
index 06e5f08..0f79890 100644
--- a/CST 126/Homework3/SinglyLinkedList.hpp
+++ b/CST 126/Homework3/SinglyLinkedList.hpp
@@ -1,6 +1,7 @@
#ifndef SINGLY_LINKED_LIST_HPP
#define SINGLY_LINKED_LIST_HPP
#include <iostream>
+#include "Node.hpp"
template<typename T>
struct ListNode
{