
push_back when the type is a class
If I have a class or struct that has a member like BSTR that points to some
string, I assume that when adding this using using vector::push_back, I have
to have a copy operator that creates a new string for the new BSTR member to
point to?
Jon