#ifndef PPPTHREAD_H #define PPPTHREAD_H #include #include #include #include "GPSDecoder.h" #include "pppOptions.h" #include "pppClient.h" #include "pppRunRealTime.h" namespace BNC_PPP { class t_pppThread : public QThread { Q_OBJECT public: t_pppThread(const t_pppOptions* opt); ~t_pppThread(); virtual void run(); signals: void newMessage(QByteArray msg, bool showOnScreen); private: const t_pppOptions* _opt; t_pppRunRealTime* _pppRunRealTime; }; } #endif