#include <iostream>

#include <vector>
#include <iterator>


template<typename _Tp, typename _Alloc = std::allocator<_Tp> >
class PtrVector
{
private:
    typedef std::vector<_Tp, _Alloc> VectrorT;
    typedef typename std::vector<_Tp, _Alloc>::const_iterator VTConstIter;

public:

    typename std::vector<_Tp, _Alloc>::const_iterator test(){}
    VTConstIter test2(){}

};


int main() {
	return 0;
}