mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
Instantiate SDK thread. Add logger. Format logs to match SDK syntax. Change log domain to 'app'.
9 lines
No EOL
121 B
C++
9 lines
No EOL
121 B
C++
|
|
#include <QThread>
|
|
|
|
class Thread : public QThread {
|
|
public:
|
|
Thread(QObject *parent = nullptr);
|
|
|
|
virtual void run();
|
|
}; |