summaryrefslogtreecommitdiff
path: root/gtk2_ardour/shared_ptrs.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/shared_ptrs.h')
-rw-r--r--gtk2_ardour/shared_ptrs.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/gtk2_ardour/shared_ptrs.h b/gtk2_ardour/shared_ptrs.h
deleted file mode 100644
index a11f1e51b5..0000000000
--- a/gtk2_ardour/shared_ptrs.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#include <boost/shared_ptr.hpp>
-
-class TimeAxisView;
-
-typedef boost::shared_ptr<TimeAxisView> TimeAxisViewPtr;
-typedef boost::shared_ptr<const TimeAxisView> TimeAxisViewConstPtr;
-
-class RouteTimeAxisView;
-
-typedef boost::shared_ptr<RouteTimeAxisView> RouteTimeAxisViewPtr;
-typedef boost::shared_ptr<const RouteTimeAxisView> RouteTimeAxisViewConstPtr;
-
-class AutomationTimeAxisView;
-
-typedef boost::shared_ptr<AutomationTimeAxisView> AutomationTimeAxisViewPtr;
-typedef boost::shared_ptr<const AutomationTimeAxisView> AutomationTimeAxisViewConstPtr;
-
-class AudioTimeAxisView;
-
-typedef boost::shared_ptr<AudioTimeAxisView> AudioTimeAxisViewPtr;
-
-class MidiTimeAxisView;
-
-typedef boost::shared_ptr<MidiTimeAxisView> MidiTimeAxisViewPtr;
-typedef boost::shared_ptr<const MidiTimeAxisView> MidiTimeAxisViewConstPtr;