prefsofia.h 342 B

123456789101112131415161718192021
  1. #ifndef PREFSOFIA_H
  2. #define PREFSOFIA_H
  3. #include <QObject>
  4. #include "ui_prefdialog.h"
  5. class PrefSofia : public QObject
  6. {
  7. Q_OBJECT
  8. public:
  9. explicit PrefSofia(Ui::PrefDialog *ui, QObject *parent = 0);
  10. void writeConfig();
  11. void readConfig();
  12. void postWriteConfig();
  13. private:
  14. Ui::PrefDialog *_ui;
  15. };
  16. #endif // PREFSOFIA_H