src/thread/SSHConnect.h

Go to the documentation of this file.
00001 #ifndef SSHCONNECT_H
00002 #define SSHCONNECT_H
00003 
00010 #include<QThread>
00011 #include<QString>
00012 
00013 #include "../ssh/myssh.hpp"
00014 
00018 class SSHConnect : public QThread
00019 {
00020     Q_OBJECT
00021 
00022     private :
00023         QString _login;
00024         QString _password;
00025         QString _host;
00026         Myssh * _ssh;
00027     public:
00028         SSHConnect(QString,QString,QString, Myssh*);
00029         void run ();
00030     signals:
00034         void connected();
00038         void connectionFailed(QString);
00039 };
00040 
00041 #endif // SSHCONNECT_H

Generated on Mon Mar 16 18:46:05 2009 for QCJM by  doxygen 1.5.4