Don't handle possible phase change if no audio channels in mackie control
[ardour.git] / libs / surfaces / mackie / mackie_control_exception.h
index afe70169488b938aeb4c84fc4518a871d831d6fd..6dcca3dd39ed9fe87dbd26cc6024a9db2435e5eb 100644 (file)
@@ -20,8 +20,8 @@
 
 #include <stdexcept>
 
-namespace Mackie
-{
+namespace ArdourSurface {
+namespace Mackie {
 
 class MackieControlException : public std::exception
 {
@@ -30,18 +30,19 @@ public:
        : _msg( msg )
        {
        }
-       
+
        virtual ~MackieControlException() throw () {}
-       
+
        const char * what() const throw ()
        {
                return _msg.c_str();
        }
-       
+
 private:
        std::string _msg;
 };
 
+}
 }
 
 #endif