diff options
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 |
