summaryrefslogtreecommitdiff
path: root/libs/surfaces/mackie/types.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/surfaces/mackie/types.cc')
-rw-r--r--libs/surfaces/mackie/types.cc13
1 files changed, 8 insertions, 5 deletions
diff --git a/libs/surfaces/mackie/types.cc b/libs/surfaces/mackie/types.cc
index 4edb211553..f3a05e0f3c 100644
--- a/libs/surfaces/mackie/types.cc
+++ b/libs/surfaces/mackie/types.cc
@@ -19,14 +19,19 @@
#include "types.h"
-namespace Mackie
-{
+namespace ArdourSurface {
+
+namespace Mackie {
+
LedState on( LedState::on );
LedState off( LedState::off );
LedState flashing( LedState::flashing );
LedState none( LedState::none );
-std::ostream & operator << ( std::ostream & os, const ControlState & cs )
+}
+}
+
+std::ostream & operator << ( std::ostream & os, const ArdourSurface::Mackie::ControlState & cs )
{
os << "ControlState { ";
os << "pos: " << cs.pos;
@@ -44,5 +49,3 @@ std::ostream & operator << ( std::ostream & os, const ControlState & cs )
return os;
}
-
-}