| 148 | } |
| 149 | |
| 150 | std::string |
| 151 | AbsRndNumGenerator::RandomDigits( int num ) |
| 152 | { |
| 153 | std::string str; |
| 154 | while ( num-- ) |
| 155 | { |
| 156 | str += dec1[genrand()%10]; |
| 157 | } |
| 158 | |
| 159 | return str; |
| 160 | } |
| 161 | |
| 162 | const char * |
| 163 | AbsRndNumGenerator::get_hex1() |
nothing calls this directly
no outgoing calls
no test coverage detected