#ifndef THREAD_H
#define THREAD_H
#include<QtGui>
class mythread:public QThread
{
    Q_OBJECT
    public:
        mythread(QObject *parent);
        void run();
    signals:
        void setlabel(int val);
};

#endif // THREAD_H
