0b126531dc9d6f26fa52dd29169b8b227bcb4d4b
[ardour.git] / libs / ardour / ardour / session_route.h
1 /*
2     Copyright (C) 2000 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18     $Id$
19 */
20
21 #ifndef __ardour_session_route_h__
22 #define __ardour_session_route_h__
23
24 #include <iostream>
25
26 #include <pbd/lockmonitor.h>
27 #include <ardour/session.h>
28 #include <ardour/route.h>
29
30 namespace ARDOUR {
31
32 template<class T> void 
33 Session::foreach_route (T *obj, void (T::*func)(Route&))
34 {
35         RouteList public_order;
36
37         {
38                 LockMonitor lm (route_lock, __LINE__, __FILE__);
39                 public_order = routes;
40         }
41
42         RoutePublicOrderSorter cmp;
43         public_order.sort (cmp);
44
45         for (RouteList::iterator i = public_order.begin(); i != public_order.end(); i++) {
46                 (obj->*func) (**i);
47         }
48 }
49
50 template<class T> void 
51 Session::foreach_route (T *obj, void (T::*func)(Route*))
52 {
53         RouteList public_order;
54
55         {
56                 LockMonitor lm (route_lock, __LINE__, __FILE__);
57                 public_order = routes;
58         }
59
60         RoutePublicOrderSorter cmp;
61         public_order.sort (cmp);
62
63         for (RouteList::iterator i = public_order.begin(); i != public_order.end(); i++) {
64                 (obj->*func) (*i);
65         }
66 }
67
68
69 template<class T, class A> void 
70 Session::foreach_route (T *obj, void (T::*func)(Route&, A), A arg1)
71 {
72         RouteList public_order;
73
74         {
75                 LockMonitor lm (route_lock, __LINE__, __FILE__);
76                 public_order = routes;
77         }
78
79         RoutePublicOrderSorter cmp;
80         public_order.sort (cmp);
81
82         for (RouteList::iterator i = public_order.begin(); i != public_order.end(); i++) {
83                 (obj->*func) (**i, arg1);
84         }
85 }
86
87 } /* namespace */
88
89 #endif /* __ardour_session_route_h__ */