summaryrefslogtreecommitdiff
path: root/libs/ardour/slave.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-10-30 15:30:22 +0000
committerDavid Robillard <d@drobilla.net>2009-10-30 15:30:22 +0000
commitc83e48e07a0b4790512c6251d8ad8f941c881021 (patch)
tree7642961a3a356dbc55fe4565cf94ab3d632d7012 /libs/ardour/slave.cc
parente5258d4ed18a358f9812acd971336272508f7038 (diff)
Trim session.h include dependency tree.
git-svn-id: svn://localhost/ardour2/branches/3.0@5979 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/slave.cc')
-rw-r--r--libs/ardour/slave.cc74
1 files changed, 74 insertions, 0 deletions
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