| 53 | // --------------------------------------------------------------------------- |
| 54 | |
| 55 | DUtils::Random::UnrepeatedRandomizer::UnrepeatedRandomizer(int min, int max) |
| 56 | { |
| 57 | if(min <= max) |
| 58 | { |
| 59 | m_min = min; |
| 60 | m_max = max; |
| 61 | } |
| 62 | else |
| 63 | { |
| 64 | m_min = max; |
| 65 | m_max = min; |
| 66 | } |
| 67 | |
| 68 | createValues(); |
| 69 | } |
| 70 | |
| 71 | // --------------------------------------------------------------------------- |
| 72 |
nothing calls this directly
no outgoing calls
no test coverage detected