add new member to ImportStatus object to allow specifying how to name new MIDI tracks
[ardour.git] / libs / surfaces / control_protocol / control_protocol / types.h
1 /*
2     Copyright (C) 2006 Paul Davis
3
4     This program is free software; you can redistribute it
5     and/or modify it under the terms of the GNU Lesser
6     General Public License as published by the Free Software
7     Foundation; either version 2 of the License, or (at your
8     option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #ifndef __ardour_control_protocol_types_h__
22 #define __ardour_control_protocol_types_h__
23
24 #include <vector>
25 #include <boost/smart_ptr.hpp>
26
27 namespace ARDOUR {
28         class Route;
29         class Stripable;
30
31         typedef std::vector<boost::weak_ptr<ARDOUR::Route> >    RouteNotificationList;
32         typedef boost::shared_ptr<RouteNotificationList>        RouteNotificationListPtr;
33         typedef std::vector<boost::shared_ptr<ARDOUR::Route> >  StrongRouteNotificationList;
34
35         typedef std::vector<boost::weak_ptr<ARDOUR::Stripable> >    StripableNotificationList;
36         typedef boost::shared_ptr<StripableNotificationList>        StripableNotificationListPtr;
37         typedef std::vector<boost::shared_ptr<ARDOUR::Stripable> >  StrongStripableNotificationList;
38 }
39
40 #endif /* __ardour_control_protocol_types_h__ */