kopia lustrzana https://github.com/PianetaRadio/CatRadio
26 wiersze
372 B
C++
26 wiersze
372 B
C++
#ifndef DIALOGSETUP_H
|
|
#define DIALOGSETUP_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class DialogSetup;
|
|
}
|
|
|
|
class DialogSetup : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit DialogSetup(QWidget *parent = nullptr);
|
|
~DialogSetup();
|
|
|
|
private slots:
|
|
void on_buttonBox_accepted();
|
|
|
|
private:
|
|
Ui::DialogSetup *ui;
|
|
};
|
|
|
|
#endif // DIALOGSETUP_H
|