diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2013-05-17 12:45:40 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2013-05-17 12:45:40 -0500 |
commit | 359294c33620c8328d61f67635046d7cc060530c (patch) | |
tree | f2ac08fdad8860f7bc1ac76203e31013a799fda7 /tdessh/sshdlg.h | |
parent | 7be7990fc5770d2cbcd937772e8239167b5900c6 (diff) | |
download | tdeutils-359294c33620c8328d61f67635046d7cc060530c.tar.gz tdeutils-359294c33620c8328d61f67635046d7cc060530c.zip |
Rename kdessh -> tdessh and kdelirc -> tdelirc.
Diffstat (limited to 'tdessh/sshdlg.h')
-rw-r--r-- | tdessh/sshdlg.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tdessh/sshdlg.h b/tdessh/sshdlg.h new file mode 100644 index 0000000..79415ad --- /dev/null +++ b/tdessh/sshdlg.h @@ -0,0 +1,33 @@ +/* vi: ts=8 sts=4 sw=4 + * + * $Id$ + * + * This file is part of the KDE project, module tdesu. + * Copyright (C) 2000 Geert Jansen <jansen@kde.org> + */ + +#ifndef __SshDlg_h_Included__ +#define __SshDlg_h_Included__ + +#include <kpassdlg.h> + +class TDEsshDialog + : public KPasswordDialog +{ + Q_OBJECT + + +public: + TDEsshDialog(TQCString host, TQCString user, TQCString stub, + TQString prompt, bool enableKeep); + ~TDEsshDialog(); + +protected: + bool checkPassword(const char *password); + +private: + TQCString m_User, m_Host, m_Stub; +}; + + +#endif // __SshDlg_h_Included__ |