/* * * $Id$ * * This file is part of the KDE project, module tdesu. * Copyright (C) 2000 Geert Jansen */ #ifndef __SshDlg_h_Included__ #define __SshDlg_h_Included__ #include class TDEsshDialog : public KPasswordDialog { Q_OBJECT public: TDEsshDialog(TQCString host, TQCString user, TQCString stub, TQString prompt, bool enableKeep); ~TDEsshDialog(); protected: bool checkPassword(const TQString &password); private: TQCString m_User, m_Host, m_Stub; }; #endif // __SshDlg_h_Included__