| 90 | } |
| 91 | |
| 92 | unsigned CPatternData::GetNoteCount(int maxrows) const { |
| 93 | unsigned count = 0; |
| 94 | VisitRows(maxrows, [&] (const stChanNote ¬e, unsigned row) { |
| 95 | if (note != BLANK) |
| 96 | ++count; |
| 97 | }); |
| 98 | return count; |
| 99 | } |
| 100 | |
| 101 | bool CPatternData::IsEmpty() const { |
| 102 | if (!data_) |
no outgoing calls
no test coverage detected