43 lines
1.4 KiB
C++
43 lines
1.4 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* vector_iterators.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: apommier <apommier@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2022/10/30 16:03:53 by apommier #+# #+# */
|
|
/* Updated: 2022/10/30 16:12:03 by apommier ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef VECTOR_ITERATORS_HPP
|
|
# define VECTOR_ITERATORS_HPP
|
|
|
|
namespace ft
|
|
{
|
|
template <typename T>
|
|
class random_access_iterator
|
|
{
|
|
public :
|
|
|
|
random_access_iterator()
|
|
{
|
|
|
|
}
|
|
|
|
random_access_iterator(random_access_iterator cpy)
|
|
{
|
|
|
|
}
|
|
|
|
~random_access_iterator()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
private :
|
|
};
|
|
}
|
|
|
|
#endif |