1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Added operator!= to AudioDeviceManager::AudioDeviceSetup

This commit is contained in:
ed 2018-02-07 09:35:20 +00:00
parent 7fa708df28
commit 19ae4c884b
2 changed files with 6 additions and 0 deletions

View file

@ -43,6 +43,11 @@ bool AudioDeviceManager::AudioDeviceSetup::operator== (const AudioDeviceManager:
&& useDefaultOutputChannels == other.useDefaultOutputChannels;
}
bool AudioDeviceManager::AudioDeviceSetup::operator!= (const AudioDeviceManager::AudioDeviceSetup& other) const
{
return ! operator== (other);
}
//==============================================================================
class AudioDeviceManager::CallbackHandler : public AudioIODeviceCallback,
public MidiInputCallback,

View file

@ -96,6 +96,7 @@ public:
AudioDeviceSetup();
bool operator== (const AudioDeviceSetup& other) const;
bool operator!= (const AudioDeviceSetup& other) const;
/** The name of the audio device used for output.
The name has to be one of the ones listed by the AudioDeviceManager's currently