1 /*
2  * @(#)listen/TempoTrack.h 3.00 24 May 1999
3  *
4  * Copyright (c) 2000 Pete Goodliffe (pete@cthree.org)
5  *
6  * This file is part of TSE3 - the Trax Sequencer Engine version 3.00.
7  *
8  * This library is modifiable/redistributable under the terms of the GNU
9  * General Public License.
10  *
11  * You should have received a copy of the GNU General Public License along
12  * with this program; see the file COPYING. If not, write to the Free Software
13  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
14  *
15  */
16 
17 #ifndef TSE3_LISTEN_TEMPOTRACK_H
18 #define TSE3_LISTEN_TEMPOTRACK_H
19 
20 #include "tse3/listen/EventTrack.h"
21 
22 namespace TSE3
23 {
24     class Tempo;
25     class TempoTrack;
26 
27     typedef EventTrackListener<Tempo> TempoTrackListener;
28 }
29 
30 #endif
31