If I have a vector of objects in one class which I want to change in another, I would try and pass all the information by reference.
What exactly do I need to pass by re
vector& is a syntax error. vector is invalid, because a vector's value type must be assignable. vector& blah is a syntax error.
vector&
vector
vector& blah
A reference to a vector is vector&.