19 lines
234 B
C
19 lines
234 B
C
|
#ifndef OPTIONSDIALOG_H
|
||
|
#define OPTIONSDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
class OptionsDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit OptionsDialog(QWidget *parent = 0);
|
||
|
|
||
|
signals:
|
||
|
|
||
|
public slots:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // OPTIONSDIALOG_H
|