summaryrefslogtreecommitdiff
path: root/gtk2_ardour/vca_master_strip.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/vca_master_strip.h')
-rw-r--r--gtk2_ardour/vca_master_strip.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/gtk2_ardour/vca_master_strip.h b/gtk2_ardour/vca_master_strip.h
index 1b47b05281..cef7290b9a 100644
--- a/gtk2_ardour/vca_master_strip.h
+++ b/gtk2_ardour/vca_master_strip.h
@@ -28,20 +28,20 @@
#include "gain_meter.h"
namespace ARDOUR {
-class GainControl;
+ class GainControl;
+ class VCA;
}
-
class VCAMasterStrip : public AxisView, public Gtk::VBox
{
- public:
- VCAMasterStrip (ARDOUR::Session* /*, boost::shared_ptr<ARDOUR::GainControl> gc*/);
+ public:
+ VCAMasterStrip (ARDOUR::Session*, boost::shared_ptr<ARDOUR::VCA>);
- std::string name() const { return "myname"; }
+ std::string name() const;
std::string state_id() const { return "VCAMasterStrip"; }
-
-
- private:
+
+ private:
+ boost::shared_ptr<ARDOUR::VCA> vca;
ArdourButton name_button;
ArdourButton active_button;
GainMeter gain_meter;