mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
23 lines
343 B
C
23 lines
343 B
C
|
#ifndef PREFERENCESDIALOG_H
|
||
|
#define PREFERENCESDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class PreferencesDialog;
|
||
|
}
|
||
|
|
||
|
class PreferencesDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit PreferencesDialog(QWidget *parent = 0);
|
||
|
~PreferencesDialog();
|
||
|
|
||
|
private:
|
||
|
Ui::PreferencesDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // PREFERENCESDIALOG_H
|