| 48 | } |
| 49 | |
| 50 | int CLPoint::getPrevPointNumber() |
| 51 | { |
| 52 | int cnt = 0; |
| 53 | for (int i = 0; i < 4; i++) |
| 54 | { |
| 55 | if (mPrevPoints[i] != nullptr) |
| 56 | { |
| 57 | cnt++; |
| 58 | } |
| 59 | } |
| 60 | return cnt; |
| 61 | } |
| 62 | |
| 63 | int CLPoint::getNextPointNumber() |
| 64 | { |
no outgoing calls
no test coverage detected