blob: 1090312b0072460b43ea6277aede2f78edbf802e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/* vi: ts=8 sts=4 sw=4
*
* $Id$
*
* This file is part of the KDE project, module kdesu.
* Copyright (C) 2000 Geert Jansen <jansen@kde.org>
*/
#ifndef __SshDlg_h_Included__
#define __SshDlg_h_Included__
#include <kpassdlg.h>
class KDEsshDialog
: public KPasswordDialog
{
Q_OBJECT
public:
KDEsshDialog(QCString host, QCString user, QCString stub,
QString prompt, bool enableKeep);
~KDEsshDialog();
protected:
bool checkPassword(const char *password);
private:
QCString m_User, m_Host, m_Stub;
};
#endif // __SshDlg_h_Included__
|