Whats the preferred way to copy a QGraphicsItemGroup so that it can be reused?

Qt Code:
  1. QGraphicsItemGroup *newgroup = new QGraphicsItemGroup(*oldgroup);
To copy to clipboard, switch view to plain text mode 

Can the end result of this be achieved by some other means avoiding subclassing and putting in copy constructors?


Thanks in advance.

Jamie