2015-10-24 16:03:07 +00:00
|
|
|
#ifndef NETLEARNER_H
|
|
|
|
#define NETLEARNER_H
|
|
|
|
|
|
|
|
#include <QThread>
|
|
|
|
|
|
|
|
class NetLearner : public QThread
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
private:
|
|
|
|
void run() Q_DECL_OVERRIDE;
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void logMessage(const QString &logMessage);
|
2015-10-25 08:51:09 +00:00
|
|
|
void progress(double progress);
|
2015-10-26 07:41:59 +00:00
|
|
|
void currentNetError(double error);
|
2015-10-24 16:03:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // NETLEARNER_H
|