I\'m a little confused as to the mechanics of the copy constructor. Correct me if I\'m wrong:
If a method takes a reference to an object as a parameter, and the class d
yes using placement new like so:
Object dstObject; new(&dstObject) Object(&anotherObject);