Project born. So far nothing works really :)
[squawker.git] / twittersocket.h
blob9614c3bfad25c4ca8c76d46cbba49ad416e698ea
1 #ifndef W_TWITTERSOCKET_H
2 #define W_TWITTERSOCKET_H
4 #include <QHttp>
6 class TwitterSocket : public QHttp
8 Q_OBJECT
10 public:
11 TwitterSocket(QObject *parent=0);
13 bool accountValid(QString user, QString pass);
15 signals:
16 void result( bool error, QString errorString);
18 private:
19 QHttp *http;
21 private slots:
22 void done( bool error);
26 #endif