9 lines
110 B
C++
9 lines
110 B
C++
|
#include "mythread.h"
|
||
|
|
||
|
MyThread::MyThread(QObject *parent) :
|
||
|
QThread(parent)
|
||
|
{}
|
||
|
|
||
|
MyThread::~MyThread()
|
||
|
{}
|