| 91 | }; |
| 92 | |
| 93 | QString toString(Interest i) |
| 94 | { |
| 95 | switch (i) { |
| 96 | case Interest::Weak: |
| 97 | return "weak"; |
| 98 | |
| 99 | case Interest::Strong: |
| 100 | return "strong"; |
| 101 | |
| 102 | case Interest::None: // fall-through |
| 103 | default: |
| 104 | return "no"; |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | struct InterestingProcess |
| 109 | { |
no outgoing calls
no test coverage detected