| 23 | Q_DECLARE_METATYPE(std::vector<std::vector<Point> >) |
| 24 | |
| 25 | FilterThread::FilterThread(QObject *parent) : |
| 26 | QThread(parent), |
| 27 | _restart(false), |
| 28 | _abort(false), |
| 29 | _FOV(QRectF()), |
| 30 | _level(0), |
| 31 | _channel(0), |
| 32 | _img(NULL), |
| 33 | _filterPlugin(NULL) |
| 34 | { |
| 35 | } |
| 36 | |
| 37 | FilterThread::~FilterThread() |
| 38 | { |
nothing calls this directly
no outgoing calls
no test coverage detected