blob: 4defcd3121d2e6c18f3cef71daebeec0c0d010e2 [file] [log] [blame] [raw]
#ifndef SETTINGSDIALOG_H
#define SETTINGSDIALOG_H
#include <QDialog>
namespace Ui {
class SettingsDialog;
}
class SettingsDialog : public QDialog
{
Q_OBJECT
public:
explicit SettingsDialog(QWidget *parent = 0);
~SettingsDialog();
private:
Ui::SettingsDialog *ui;
private slots:
void use_internet_ssh_library(bool);
};
#endif // SETTINGSDIALOG_H