| 108 | } |
| 109 | |
| 110 | void CtrlrMidiInputComparatorSingle::addMatchTargetSysEx (CtrlrModulator *m) |
| 111 | { |
| 112 | BigInteger bi = memoryToBits(m->getMidiMessage(source).getMidiPattern()); |
| 113 | |
| 114 | CtrlrMultiMidiMapIterator it = mapSysEx.find(bi); |
| 115 | |
| 116 | if (it == mapSysEx.end()) |
| 117 | { |
| 118 | mapSysEx.insert (CtrlrMultiMidiMapPair(bi,m)); |
| 119 | } |
| 120 | else |
| 121 | { |
| 122 | mapSysEx[bi].targets.add (m); |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | void CtrlrMidiInputComparatorSingle::match (const MidiMessage &m) |
| 127 | { |
nothing calls this directly
no test coverage detected