* the very humble beginnings of sending MIDI clock
[ardour.git] / libs / ardour / ticker.cc
1 /*
2     Copyright (C) 2008 Hans Baier 
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 #include "ardour/ticker.h"
21 #include "ardour/session.h"
22
23 namespace ARDOUR
24 {
25
26
27 void Ticker::set_session(Session& s) 
28 {
29          _session = &s;
30          
31          if(_session) {
32                  _session->tick.connect(mem_fun (*this, &Ticker::tick));
33                  _session->GoingAway.connect(mem_fun (*this, &Ticker::going_away));
34          }
35 }
36
37
38 void MidiClockTicker::tick(const nframes_t& transport_frames, const BBT_Time& transport_bbt, const SMPTE::Time& transport_smpt)
39 {
40         
41 }
42
43 }
44