From febf0637f9869419bc5864543c89e3fd0b1ac316 Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 19 Nov 2019 01:21:14 +0100 Subject: vector basic --- list.hpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 list.hpp (limited to 'list.hpp') diff --git a/list.hpp b/list.hpp new file mode 100644 index 0000000..aaff3e8 --- /dev/null +++ b/list.hpp @@ -0,0 +1,12 @@ +#ifndef LIST_HPP +# define LIST_HPP + +template < class T, class Alloc = allocator > +class list +{ + + + t_list *head; +}; + +#endif -- cgit