00001 #include <qapplication.h> 00002 #include <qtimer.h> 00003 #include <qstring.h> 00004 #include <iostream> 00005 #include "mythsoap.h" 00006 00007 using namespace std; 00008 00009 class IgnyteGrabber : public QObject 00010 { 00011 Q_OBJECT 00012 00013 public: 00014 IgnyteGrabber(QString, QString, QApplication*); 00015 00016 private: 00017 QTimer *waitForSoap; 00018 MythSoap ms; 00019 QApplication *app; 00020 void outputData(QString); 00021 00022 public slots: 00023 void checkHttp(); 00024 }; 00025
1.5.5