aboutsummaryrefslogtreecommitdiff
path: root/list.hpp
diff options
context:
space:
mode:
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