summaryrefslogtreecommitdiffstats
path: root/passworddialog.h
blob: 3db9b1f50a58ee2f378c5374b5897b7a9e16a21d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef PASSWORDDIALOG_H
#define PASSWORDDIALOG_H

#include <QDialog>

namespace Ui {
class PasswordDialog;
}

class PasswordDialog : public QDialog
{
    Q_OBJECT

public:
    explicit PasswordDialog(QWidget *parent = 0);
    ~PasswordDialog();

private:
    Ui::PasswordDialog *ui;
};

#endif // PASSWORDDIALOG_H