| 228 | typename T |
| 229 | > |
| 230 | timer<T>:: |
| 231 | timer( |
| 232 | T& ao_, |
| 233 | af_type af_ |
| 234 | ) : |
| 235 | ao(ao_), |
| 236 | af(af_), |
| 237 | gc(get_global_clock()) |
| 238 | { |
| 239 | delay = 1000; |
| 240 | next_time_to_run = 0; |
| 241 | running = false; |
| 242 | in_global_clock = false; |
| 243 | } |
| 244 | |
| 245 | // ---------------------------------------------------------------------------------------- |
| 246 |
nothing calls this directly
no outgoing calls
no test coverage detected