summaryrefslogtreecommitdiff
path: root/gtk2_ardour/track_selection.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-07-01 23:20:18 +0000
committerCarl Hetherington <carl@carlh.net>2009-07-01 23:20:18 +0000
commit5b97b137663d0990d1a3ac172f01b200a45e4692 (patch)
treef0d18663e4eadf52e2e805eb5f946e6ca1f5e234 /gtk2_ardour/track_selection.h
parent236868761c1823cafa328ce4e25a7d7f66ef402c (diff)
Separate route list code from Editor into its own object, EditorRouteList. Hopefully makes things a bit better.
git-svn-id: svn://localhost/ardour2/branches/3.0@5302 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/track_selection.h')
-rw-r--r--gtk2_ardour/track_selection.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk2_ardour/track_selection.h b/gtk2_ardour/track_selection.h
index 8d46a59828..2a4cc1b288 100644
--- a/gtk2_ardour/track_selection.h
+++ b/gtk2_ardour/track_selection.h
@@ -27,6 +27,9 @@ class TimeAxisView;
class TrackSelection : public std::list<TimeAxisView*>
{
public:
+ TrackSelection () {}
+
+ TrackSelection (std::list<TimeAxisView*> const &);
std::list<TimeAxisView*> add (std::list<TimeAxisView*> const &);
bool contains (TimeAxisView const *) const;
};