You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
518 B

#ifndef MONEROSERVICE_CONFIGURATOR_H
#define MONEROSERVICE_CONFIGURATOR_H
#include <QDialog>
#include "Config.h"
namespace Ui {
class Configurator;
}
class Configurator : public QDialog
{
Q_OBJECT
public:
explicit Configurator(QWidget *parent = nullptr);
~Configurator() override;
bool configUpdated() const;
private:
void setConfig(Config::ConfigKey configKey, const QVariant &value);
Ui::Configurator *ui;
bool m_configUpdated = false;
};
#endif //MONEROSERVICE_CONFIGURATOR_H