Ardour  8.7-14-g57a6773833
tranzport_common.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2006 Paul Davis
3  * Copyright (C) 2007 Michael Taht
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  *
19  * */
20 
21 /* The most common header files that the tranzport uses */
22 
23 #ifndef ardour_tranzport_common
24 #define ardour_tranzport_common
25 #include <iostream>
26 #include <algorithm>
27 #include <cmath>
28 
29 #define __STDC_FORMAT_MACROS
30 #include <inttypes.h>
31 #include <float.h>
32 #include <sys/time.h>
33 #include <errno.h>
34 
35 #include "pbd/pthread_utils.h"
36 
37 #include "ardour/route.h"
38 #include "ardour/audio_track.h"
40 #include "ardour/tempo.h"
41 #include "ardour/location.h"
42 #include "ardour/dB.h"
43 
44 #endif /* ardour_tranzport_common */