diff options
| author | Charles <sircharlesaze@gmail.com> | 2019-11-19 01:21:14 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2019-11-19 01:21:14 +0100 |
| commit | febf0637f9869419bc5864543c89e3fd0b1ac316 (patch) | |
| tree | c88262c3f9461beb7acd60e53cc3c19d480c1348 /list.hpp | |
| download | ft_containers-febf0637f9869419bc5864543c89e3fd0b1ac316.tar.gz ft_containers-febf0637f9869419bc5864543c89e3fd0b1ac316.tar.bz2 ft_containers-febf0637f9869419bc5864543c89e3fd0b1ac316.zip | |
vector basic
Diffstat (limited to 'list.hpp')
| -rw-r--r-- | list.hpp | 12 |
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 |
