aboutsummaryrefslogtreecommitdiff
path: root/CST 126/Homework_3/linked_list_nodes.hpp
blob: dd178c1a9b0d11dfa498baf1553e9a59696a7ed7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//#ifndef LINKED_LIST_NODE_HPP
//#define LINKED_LIST_NODE_HPP
//
//#include "node.hpp"
//
//namespace CST126
//{
//	template <typename T>
//	class singly_linked_node : Node<t>
//	{
//	protected:
//		singly_linked_node<T>* _next{ nullptr };
//
//	};
//
//	template <typename T>
//	class doubly_linked_node final : singly_linked_node<T>
//	{
//	protected:
//		doubly_linked_node<T>* _prev{ nullptr };
//	};
//}
//
//#endif