Copy constructors &c...

So, I have a class with lots of data members, and I recently added a pointer to it that I want to have a copy made when being copy constructed or operator ='d. Is there a way use the "default" copy constructor/operator = behavior for all elements except for the one pointer that I have (so far)? Or am I stuck basically copying their constructor except for that one part?
Unfortunately, no. You'll have to manually assign each of the members.
Dang, that was what I thought...ah well, thanks for the info!
Topic archived. No new replies allowed.