summaryrefslogtreecommitdiffstats
path: root/tdessh/sshdlg.h
blob: 752a7649b3c82a3e43df4db246ce5646a23d2cb1 (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
33
/*
 *
 * $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
{
    TQ_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__