Add Audio Tracks and Busses too.
[ardour.git] / libs / surfaces / mackie / control_group.h
index 1b73770fa2d3ab1c6de2b17ff1c493d5df6b13e2..e79a60f42f455473a8db2936abbd35789407e845 100644 (file)
@@ -3,6 +3,7 @@
 
 #include <vector>
 
+namespace ArdourSurface {
 namespace Mackie {
 
 class Control;
@@ -18,25 +19,26 @@ public:
                : _name (name) {}
 
        virtual ~Group() {}
-       
+
        virtual bool is_strip() const { return false; }
        virtual bool is_master() const { return false; }
-       
+
        virtual void add (Control & control);
-       
+
        const std::string & name() const { return _name; }
        void set_name (const std::string & rhs) { _name = rhs; }
-       
+
        typedef std::vector<Control*> Controls;
        const Controls & controls() const { return _controls; }
-       
+
 protected:
        Controls _controls;
-       
+
 private:
        std::string _name;
 };
 
+}
 }
 
 #endif