ft_containers/ft_containers.hpp

25 lines
1.1 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_containers.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: apommier <apommier@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/12 19:46:33 by apommier #+# #+# */
/* Updated: 2022/10/19 17:22:39 by apommier ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_CONTAINERS_HPP
# define FT_CONTAINERS_HPP
# include <iostream>
//namespace ft {
# include "./containers/map.hpp"
# include "./containers/set.hpp"
# include "./containers/stack.hpp"
# include "./containers/vector.hpp"
//}
#endif