| 13 | #define LEMON_MODULE_NAME "JudgingController" |
| 14 | |
| 15 | JudgingController::JudgingController(Settings *settings, QObject *parent) : QObject(parent) { |
| 16 | isJudging = false; |
| 17 | maxThreads = qMax(1, settings->getMaxJudgingThreads()); |
| 18 | } |
| 19 | |
| 20 | void JudgingController::assign() { |
| 21 | if (! isJudging) { |
nothing calls this directly
no test coverage detected