aboutsummaryrefslogtreecommitdiff
path: root/list.hpp
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-11-19 01:21:14 +0100
committerCharles <sircharlesaze@gmail.com>2019-11-19 01:21:14 +0100
commitfebf0637f9869419bc5864543c89e3fd0b1ac316 (patch)
treec88262c3f9461beb7acd60e53cc3c19d480c1348 /list.hpp
downloadft_containers-febf0637f9869419bc5864543c89e3fd0b1ac316.tar.gz
ft_containers-febf0637f9869419bc5864543c89e3fd0b1ac316.tar.bz2
ft_containers-febf0637f9869419bc5864543c89e3fd0b1ac316.zip
vector basic
Diffstat (limited to 'list.hpp')
-rw-r--r--list.hpp12
1 files changed, 12 insertions, 0 deletions
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<T> >
+class list
+{
+
+
+ t_list *head;
+};
+
+#endif