| 18 | #include <QThread> |
| 19 | |
| 20 | class QNapiThread : public QThread { |
| 21 | Q_OBJECT |
| 22 | public: |
| 23 | QNapiThread() : abort(false) {} |
| 24 | void requestAbort() { abort = true; } |
| 25 | |
| 26 | protected: |
| 27 | bool abort; |
| 28 | }; |
| 29 | |
| 30 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected