Converting between vector types..

Suppose I want to put the elements of a vector<char> CharVec into a vector<myObjectss> MyVectorofObjects ? I can't find any good examples when it comes to dealing with vector types...How would I do this?
The only way that would work is if you can implicitly convert from char to myObjects or you would have to convert first then put in the other vector.
Topic archived. No new replies allowed.