most of libardour now actually compiles
[ardour.git] / libs / ardour / slave.cc
1 /*
2     Copyright (C) 2002 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  */
19
20 #include "ardour/audioengine.h"
21 #include "ardour/session.h"
22 #include "ardour/slave.h"
23
24 namespace ARDOUR {
25
26 TempoMap&
27 SlaveSessionProxy::tempo_map() const
28 {
29         return session.tempo_map();
30 }
31
32 framecnt_t
33 SlaveSessionProxy::frame_rate() const
34 {
35         return session.frame_rate();
36 }
37
38 framepos_t
39 SlaveSessionProxy::audible_frame() const
40 {
41         return session.audible_frame();
42 }
43
44 framepos_t
45 SlaveSessionProxy::transport_frame() const
46 {
47         return session.transport_frame();
48 }
49
50 pframes_t
51 SlaveSessionProxy::frames_since_cycle_start() const
52 {
53         return session.engine().samples_since_cycle_start();
54 }
55
56 framepos_t
57 SlaveSessionProxy::frame_time() const
58 {
59         return session.engine().sample_time();
60 }
61
62 void
63 SlaveSessionProxy::request_locate(framepos_t frame, bool with_roll)
64 {
65         session.request_locate(frame, with_roll);
66 }
67
68 void
69 SlaveSessionProxy::request_transport_speed(double speed)
70 {
71         session.request_transport_speed(speed);
72 }
73
74 } // namespace ARDOUR