control surfaces: fix BaseUI method for disabling record enable
[ardour.git] / libs / audiographer / audiographer / throwing.h
index e02958a5214632ef0c6b3e8ad12e640c0f54cfe8..8bd84155605c76d9ebbd11fc7a36347cabe62194 100644 (file)
@@ -16,7 +16,7 @@ namespace AudioGrapher
   * However, if you want ultra-optimized code and/or don't care about handling
   * error situations, feel free to use whatever you want.
   */
-enum LIBAUDIOGRAPHER_API ThrowLevel
+enum /*LIBAUDIOGRAPHER_API*/ ThrowLevel
 {
        ThrowNone,     ///< Not allowed to throw
        ThrowObject,   ///< Object level stuff, ctors, initalizers etc.
@@ -26,7 +26,7 @@ enum LIBAUDIOGRAPHER_API ThrowLevel
 };
 
 /** Class that allows optimizing out error checking during compile time.
-  * Usage: to take all advantage of this class you should wrap all 
+  * Usage: to take all advantage of this class you should wrap all
   * throwing statemets like this:
   * \code
   * if (throw_level (SomeThrowLevel) && other_optional_conditionals) {
@@ -40,7 +40,7 @@ enum LIBAUDIOGRAPHER_API ThrowLevel
   * logical and (short-circuiting).
   */
 template<ThrowLevel L = DEFAULT_THROW_LEVEL>
-class LIBAUDIOGRAPHER_API Throwing
+class /*LIBAUDIOGRAPHER_API*/ Throwing
 {
   protected:
        Throwing() {}