uiconly.h 256 B

1234567891011121314151617181920
  1. #ifndef UIC_ONLY_H
  2. #define UIC_ONLY_H
  3. #include <QWidget>
  4. #include <memory>
  5. #include "ui_uiconly.h"
  6. class UicOnly : public QWidget
  7. {
  8. Q_OBJECT
  9. public:
  10. explicit UicOnly(QWidget *parent = 0);
  11. private:
  12. const std::auto_ptr<Ui::UicOnly> ui;
  13. };
  14. #endif