get editor.cc to compile
[ardour.git] / gtk2_ardour / automation_gain_line.h
1 #ifndef __ardour_gtk_automation_gain_line_h__
2 #define __ardour_gtk_automation_gain_line_h__
3
4 #include <ardour/ardour.h>
5 #include <gtkmm.h>
6
7 #include "canvas.h"
8 #include "automation_line.h"
9
10 namespace ARDOUR {
11         class Session;
12 }
13
14
15 class TimeAxisView;
16
17 class AutomationGainLine : public AutomationLine
18 {
19   public:
20   AutomationGainLine (string name, ARDOUR::Session&, TimeAxisView&, ArdourCanvas::Group& parent, ARDOUR::Curve&);
21         
22         void view_to_model_y (double&);
23         void model_to_view_y (double&);
24
25   private:
26         ARDOUR::Session& session;
27
28 };
29
30
31 #endif /* __ardour_gtk_automation_gain_line_h__ */
32
33