24 lines
No EOL
438 B
C++
24 lines
No EOL
438 B
C++
#ifndef SETTINGS_DIALOG_H
|
|
#define SETTINGS_DIALOG_H
|
|
|
|
#include "ui_settingsdialog.h"
|
|
|
|
#include <marketplace.h>
|
|
|
|
#include <QDialog>
|
|
|
|
class SettingsDialog : public QDialog
|
|
{
|
|
public:
|
|
SettingsDialog(QWidget* parent = nullptr,
|
|
Qt::WindowFlags f = Qt::WindowTitleHint | Qt::WindowSystemMenuHint);
|
|
|
|
public slots:
|
|
void accept() override;
|
|
|
|
private:
|
|
Ui::SettingsDialog ui_;
|
|
Marketplace* market_{};
|
|
};
|
|
|
|
#endif |