NOOP, remove trailing tabs/whitespace.
[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
30         typedef std::vector<boost::weak_ptr<ARDOUR::Route> >    RouteNotificationList;
31         typedef boost::shared_ptr<RouteNotificationList>        RouteNotificationListPtr;
32
33         typedef std::vector<boost::shared_ptr<ARDOUR::Route> >  StrongRouteNotificationList;
34 }
35
36 #endif /* __ardour_control_protocol_types_h__ */