]> git.rkrishnan.org Git - dttsp.git/blob - jDttSP/common.h
e31c20c6bc1c663c3cec4240fbf840de6702a43d
[dttsp.git] / jDttSP / common.h
1 /* common.h
2 a simple way to get all the necessary includes
3    
4 This file is part of a program that implements a Software-Defined Radio.
5
6 Copyright (C) 2004 by Frank Brickle, AB2KT and Bob McGwier, N4HY
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21
22 The authors can be reached by email at
23
24 ab2kt@arrl.net
25 or
26 rwmcgwier@comcast.net
27
28 or by paper mail at
29
30 The DTTS Microwave Society
31 6 Kathleen Place
32 Bridgewater, NJ 08807
33 */
34
35 #ifndef _common_h
36 #define _common_h
37
38 #include <fromsys.h>
39 #include <defs.h>
40 #include <banal.h>
41 #include <splitfields.h>
42 #include <datatypes.h>
43 #include <bufvec.h>
44 #include <cxops.h>
45 #include <ringb.h>
46 #include <chan.h>
47 #include <lmadf.h>
48 #include <fftw.h>
49 #include <ovsv.h>
50 #include <filter.h>
51 #include <oscillator.h>
52 #include <digitalagc.h>
53 #include <am_demod.h>
54 #include <fm_demod.h>
55 #include <noiseblanker.h>
56 #include <correctIQ.h>
57 #include <crc16.h>
58 #include <speechproc.h>
59 #include <spottone.h>
60 #include <update.h>
61 #include <meter.h>
62 #include <spectrum.h>
63 #include <sdrexport.h>
64 #include <local.h>
65
66 #endif
67