* @brief Thread to run cppcheck * */
| 48 | * |
| 49 | */ |
| 50 | class CheckThread : public QThread { |
| 51 | Q_OBJECT |
| 52 | public: |
| 53 | struct Details { |
| 54 | int threadIndex; |
| 55 | QString file; |
| 56 | QTime startTime; |
| 57 | }; |
| 58 | |
| 59 | public: |
| 60 | CheckThread(ThreadResult &result, int threadIndex); |