second (and hopefully) final part of changes to respond to header format changes...
[ArdourMidi.git] / libs / ardour / slave.cc
blobbe88fe223cbbc94a29356787db9cd8ac38afc916
1 /*
2 Copyright (C) 2002 Paul Davis
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.
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.
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.
20 #include "ardour/audioengine.h"
21 #include "ardour/session.h"
22 #include "ardour/slave.h"
24 namespace ARDOUR {
26 TempoMap&
27 SlaveSessionProxy::tempo_map() const
29 return session.tempo_map();
32 nframes_t
33 SlaveSessionProxy::frame_rate() const
35 return session.frame_rate();
38 nframes64_t
39 SlaveSessionProxy::audible_frame() const
41 return session.audible_frame();
44 nframes64_t
45 SlaveSessionProxy::transport_frame() const
47 return session.transport_frame();
50 nframes_t
51 SlaveSessionProxy::frames_since_cycle_start() const
53 return session.engine().frames_since_cycle_start();
56 nframes64_t
57 SlaveSessionProxy::frame_time() const
59 return session.engine().frame_time();
62 void
63 SlaveSessionProxy::request_locate(nframes64_t frame, bool with_roll)
65 session.request_locate(frame, with_roll);
68 void
69 SlaveSessionProxy::request_transport_speed(double speed)
71 session.request_transport_speed(speed);
74 } // namespace ARDOUR