#ifndef ITERATABLE_INTVEC_H #define ITERATABLE_INTVEC_H #include #include "intvec.h" class Intvec: public std::vector{ public: Intvec(iterator first, iterator last, const allocator_type& __a = allocator_type()): std::vector(first,last,__a){ } Intvec(int n=0):std::vector(n){} Intvec(intvec& iv):std::vector(iv.length()){ int n=iv.length(); for(int i=0;i