|
|
|
@@ -58,10 +58,12 @@ public: |
|
|
|
AdobeAudition, /**< Represents Adobe Audition. */
|
|
|
|
AdobePremierePro, /**< Represents Adobe Premiere Pro. */
|
|
|
|
AppleGarageBand, /**< Represents Apple GarageBand. */
|
|
|
|
AppleInfoHelper, /**< Represents Apple com.apple.audio.InfoHelper. */
|
|
|
|
AppleLogic, /**< Represents Apple Logic Pro. */
|
|
|
|
AppleMainStage, /**< Represents Apple Main Stage. */
|
|
|
|
Ardour, /**< Represents Ardour. */
|
|
|
|
AULab, /**< Represents AU Lab. */
|
|
|
|
AUVal, /**< Represents Apple AU validator. */
|
|
|
|
AvidProTools, /**< Represents Avid Pro Tools. */
|
|
|
|
BitwigStudio, /**< Represents Bitwig Studio. */
|
|
|
|
CakewalkSonar8, /**< Represents Cakewalk Sonar 8. */
|
|
|
|
@@ -121,10 +123,14 @@ public: |
|
|
|
|| type == AbletonLiveGeneric; }
|
|
|
|
/** Returns true if the host is Adobe Audition. */
|
|
|
|
bool isAdobeAudition() const noexcept { return type == AdobeAudition; }
|
|
|
|
/** Returns true if the host is com.apple.audio.InfoHelper. */
|
|
|
|
bool isAppleInfoHelper() const noexcept { return type == AppleInfoHelper; }
|
|
|
|
/** Returns true if the host is Ardour. */
|
|
|
|
bool isArdour() const noexcept { return type == Ardour; }
|
|
|
|
/** Returns true if the host is AU Lab. */
|
|
|
|
bool isAULab() const noexcept { return type == AULab; }
|
|
|
|
/** Returns true if the host is auval. */
|
|
|
|
bool isAUVal() const noexcept { return type == AUVal; }
|
|
|
|
/** Returns true if the host is Bitwig Studio. */
|
|
|
|
bool isBitwigStudio() const noexcept { return type == BitwigStudio; }
|
|
|
|
/** Returns true if the host is any version of Steinberg Cubase. */
|
|
|
|
|