| 145 | } |
| 146 | |
| 147 | void StateAB::toggleAB() |
| 148 | { |
| 149 | juce::XmlElement temp { "Temp" }; |
| 150 | saveStateToXml(pluginProcessor, temp); // current to temp |
| 151 | loadStateFromXml(ab, pluginProcessor); // ab to current |
| 152 | ab = temp; // temp to ab |
| 153 | } |
| 154 | |
| 155 | void StateAB::copyAB() |
| 156 | { |
no test coverage detected