| 987 | #endif // DDS_SCHEDULER |
| 988 | |
| 989 | void Scheduler::GetBoardTimes(std::vector<std::pair<int,int>>& outVec) const |
| 990 | { |
| 991 | outVec.clear(); |
| 992 | for (int b = 0; b < numHands; b++) |
| 993 | { |
| 994 | const handType& hp = hands[b]; |
| 995 | outVec.emplace_back(b, hp.time); |
| 996 | } |
| 997 | } |
| 998 | |
| 999 | |
| 1000 | void Scheduler::SetBoardTime(int boardIndex, int timeMs) |