summaryrefslogtreecommitdiff
path: root/libs/surfaces/mackie/controls.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-04-15 20:37:20 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2015-04-15 20:37:20 -0400
commit4512d013eb7c658519abc8b5e82a1e7bf926cad6 (patch)
treeb6ffcf334e4c02ed4cde54d84c09625927093ba5 /libs/surfaces/mackie/controls.h
parent12cb11b286a50aae72841a65fa055066ca5c9f47 (diff)
put all of the Mackie control surface code into the ArdourSurface namespace
Diffstat (limited to 'libs/surfaces/mackie/controls.h')
-rw-r--r--libs/surfaces/mackie/controls.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/libs/surfaces/mackie/controls.h b/libs/surfaces/mackie/controls.h
index 0923c9772f..e8098ccf7e 100644
--- a/libs/surfaces/mackie/controls.h
+++ b/libs/surfaces/mackie/controls.h
@@ -36,15 +36,15 @@ namespace ARDOUR {
class AutomationControl;
}
-namespace Mackie
-{
+namespace ArdourSurface {
+
+namespace Mackie {
class Strip;
class Group;
class Surface;
-class Control
-{
+class Control {
public:
Control (int id, std::string name, Group& group);
virtual ~Control() {}
@@ -56,7 +56,7 @@ public:
bool in_use () const;
void set_in_use (bool);
- /// Keep track of the timeout so it can be updated with more incoming events
+ // Keep track of the timeout so it can be updated with more incoming events
sigc::connection in_use_connection;
virtual MidiByteArray zero() = 0;
@@ -85,8 +85,9 @@ public:
bool _in_use;
};
-std::ostream & operator << (std::ostream & os, const Control & control);
-
}
+}
+
+std::ostream & operator << (std::ostream & os, const ArdourSurface::Mackie::Control & control);
#endif /* __mackie_controls_h__ */