Quote Originally Posted by VictorN View Post
I don't it either...
The main point is you cannot "make vector which can hold any data type". Period.
You could, however, make vector which can hold pointers to "any data type" if you cast these pointers to something like void*
and some way of knowing to what data type to re-cast these void* pointers when they are needed to be used.