1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-18 00:54:19 +00:00

Added method PluginHostType::isProTools()

This commit is contained in:
jules 2016-02-22 18:05:38 +00:00
parent 328652c3ad
commit 70a3db1cb1

View file

@ -107,6 +107,7 @@ public:
bool isWavelab() const noexcept { return isWavelabLegacy() || type == SteinbergWavelab7 || type == SteinbergWavelab8 || type == SteinbergWavelabGeneric; }
bool isWavelabLegacy() const noexcept { return type == SteinbergWavelab5 || type == SteinbergWavelab6; }
bool isRenoise() const noexcept { return type == Renoise; }
bool isProTools() const noexcept { return type == DigidesignProTools; }
//==============================================================================
const char* getHostDescription() const noexcept