mirror of
https://github.com/pbek/QOwnNotes.git
synced 2025-06-29 05:19:55 +00:00
25 lines
364 B
C
25 lines
364 B
C
|
#ifndef PASSWORDDIALOG_H
|
||
|
#define PASSWORDDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class PasswordDialog;
|
||
|
}
|
||
|
|
||
|
class PasswordDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit PasswordDialog(QWidget *parent = 0, QString labelText = "");
|
||
|
~PasswordDialog();
|
||
|
QString password();
|
||
|
|
||
|
private:
|
||
|
Ui::PasswordDialog *ui;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // PASSWORDDIALOG_H
|