summaryrefslogtreecommitdiff
path: root/gtk2_ardour/axis_provider.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2017-05-05 19:25:35 +0100
committerPaul Davis <paul@linuxaudiosystems.com>2017-05-05 19:25:35 +0100
commit35a9facdaeed3285c0c81ba0b7b67d1607b56438 (patch)
tree31c8b3e47fe8921733dd9dd6b504bba22b6f0528 /gtk2_ardour/axis_provider.h
parenta84b1a375a0a220193d5e23df8278f49b9f6a457 (diff)
add missing files from selection development branch(es)
Diffstat (limited to 'gtk2_ardour/axis_provider.h')
-rw-r--r--gtk2_ardour/axis_provider.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/gtk2_ardour/axis_provider.h b/gtk2_ardour/axis_provider.h
new file mode 100644
index 0000000000..6aeb77ab09
--- /dev/null
+++ b/gtk2_ardour/axis_provider.h
@@ -0,0 +1,38 @@
+/*
+ * Copyright (C) 2017 Paul Davis (paul@linuxaudiosystems.com)
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+#ifndef __gtk2_ardour_axis_provider_h__
+#define __gtk2_ardour_axis_provider_h__
+
+#include <boost/shared_ptr.hpp>
+
+namespace ARDOUR {
+ class Stripable;
+ class AutomationControl;
+}
+
+class AxisView;
+
+class AxisViewProvider
+{
+ public:
+ virtual AxisView* axis_view_by_stripable (boost::shared_ptr<ARDOUR::Stripable>) const = 0;
+ virtual AxisView* axis_view_by_control (boost::shared_ptr<ARDOUR::AutomationControl>) const = 0;
+};
+
+#endif /* __gtk2_ardour_axis_provider_h__ */