From c83e48e07a0b4790512c6251d8ad8f941c881021 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 30 Oct 2009 15:30:22 +0000 Subject: Trim session.h include dependency tree. git-svn-id: svn://localhost/ardour2/branches/3.0@5979 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/slave.cc | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 libs/ardour/slave.cc (limited to 'libs/ardour/slave.cc') diff --git a/libs/ardour/slave.cc b/libs/ardour/slave.cc new file mode 100644 index 0000000000..f07ea4c872 --- /dev/null +++ b/libs/ardour/slave.cc @@ -0,0 +1,74 @@ +/* + Copyright (C) 2002 Paul Davis + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + + */ + +#include "ardour/audioengine.h" +#include "ardour/session.h" +#include "ardour/slave.h" + +namespace ARDOUR { + +TempoMap& +SlaveSessionProxy::tempo_map() const +{ + return session.tempo_map(); +} + +nframes_t +SlaveSessionProxy::frame_rate() const +{ + return session.frame_rate(); +} + +nframes_t +SlaveSessionProxy::audible_frame() const +{ + return session.audible_frame(); +} + +nframes_t +SlaveSessionProxy::transport_frame() const +{ + return session.transport_frame(); +} + +nframes_t +SlaveSessionProxy::frames_since_cycle_start() const +{ + return session.engine().frames_since_cycle_start(); +} + +nframes_t +SlaveSessionProxy::frame_time() const +{ + return session.engine().frame_time(); +} + +void +SlaveSessionProxy::request_locate(nframes_t frame, bool with_roll) +{ + session.request_locate(frame, with_roll); +} + +void +SlaveSessionProxy::request_transport_speed(double speed) +{ + session.request_transport_speed(speed); +} + +} // namespace ARDOUR -- cgit v1.2.3