UicOnly.hpp 233 B

123456789101112131415
  1. #include "ui_uiA.h"
  2. #include "ui_uiB.h"
  3. // AUTOUIC includes on the first two lines of a header file
  4. #include <QObject>
  5. class UicOnly : public QObject
  6. {
  7. public:
  8. UicOnly();
  9. ~UicOnly();
  10. private:
  11. Ui::UiA* uiA;
  12. Ui::UiB* uiB;
  13. };