2015-08-28 14:34:26 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014-2015, Claudio Lapilli and the newRPL Team
|
|
|
|
* All rights reserved.
|
|
|
|
* This file is released under the 3-clause BSD license.
|
|
|
|
* See the file LICENSE.txt that shipped with this distribution.
|
|
|
|
*/
|
|
|
|
|
2015-03-05 20:35:35 +01:00
|
|
|
#ifndef RPLTHREAD_H
|
|
|
|
#define RPLTHREAD_H
|
|
|
|
|
|
|
|
#include <QThread>
|
|
|
|
|
2020-01-22 00:34:44 +01:00
|
|
|
class RPLThread:public QThread
|
2015-03-05 20:35:35 +01:00
|
|
|
{
|
2020-01-22 00:34:44 +01:00
|
|
|
public:
|
2015-03-05 20:35:35 +01:00
|
|
|
void run();
|
|
|
|
|
2020-01-22 00:34:44 +01:00
|
|
|
RPLThread(QObject * parent);
|
|
|
|
~RPLThread();
|
2015-03-05 20:35:35 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // RPLTHREAD_H
|