I have a QWidget derivate, let us assume the standard QWidget example
class MainWindow : public QMainWindow { //.. }
Does it make sense for this class MainWindow to fullfill the Rule of Five, I mean especially the Move constructor and move assignment ?
(Since the MainWindow should be created only once)