I was wondering how a copy constructor would look like if I had private member variables of vector<Class>.
So like a Class items which has private member variables of string and ints.
Then have another Class inventory which has a private member variable vector<items> in it. I want to know how to make a copy constructor like this.