| 107 | } |
| 108 | |
| 109 | bool MultiBandBeat::isMultiBandBeat() const { |
| 110 | u32 bandCount = 0; |
| 111 | if (mBassBeat) bandCount++; |
| 112 | if (mMidBeat) bandCount++; |
| 113 | if (mTrebleBeat) bandCount++; |
| 114 | return bandCount >= 2; |
| 115 | } |
| 116 | |
| 117 | void MultiBandBeat::reset() { |
| 118 | mBassBeat = false; |
no outgoing calls
no test coverage detected