To define a specialization that is used for every Vector of pointers and only for Vectors of pointers, we need a partial specialization:
template <class T> class Vector <T *> : private Vector<void *> {
public:
typedef Vector<void*> Base;
Vector(): Base() {}
explicit Vector(int i) : Base(i ) {}
T *& elem(int i ) { return static_cast <T *&> (Base::elem(i)); }
T *& opeator[](int i) { return static_cast <T *&>(Base::operator[](i )); }
//...
};
This definition has me in a tizzy. This is related to partial specialization but i don't understand the syntax. private Vector<void *> definition part looks like a parent class to me.
- Why not specify
Vector <void *>intemplate <class T> class Vector <void *>. - It would be great if anybody can breakdown the definition part. (sorry if its too much to ask)

static_casts are illegal between these types, andopeator[]is invalid syntax. – Ben Voigt Feb 21 '12 at 3:34