preferences.h 291 B

12345678910111213141516171819202122
  1. #ifndef PREFERENCES_H
  2. #define PREFERENCES_H
  3. #include <QDialog>
  4. namespace Ui {
  5. class Preferences;
  6. }
  7. class Preferences : public QDialog
  8. {
  9. Q_OBJECT
  10. public:
  11. explicit Preferences(QWidget *parent = 0);
  12. ~Preferences();
  13. private:
  14. Ui::Preferences *ui;
  15. };
  16. #endif // PREFERENCES_H