TTKMusicPlayer  3.7.0.0
TTKMusicPlayer imitates Kugou UI, the music player uses of qmmp core library based on Qt for windows and linux
ttkabstractthread.cpp
Go to the documentation of this file.
1 #include "ttkabstractthread.h"
2 
4  : QThread(parent),
5  m_running(true)
6 {
7 
8 }
9 
11 {
12  m_running = false;
13  if(isRunning())
14  {
15  quit();
16  wait();
17  }
18 }
19 
21 {
22  m_running = true;
23  QThread::start();
24 }
25 
27 {
28 
29 }
TTKAbstractThread(QObject *parent=nullptr)
virtual void run() override