SigPack - the C++ signal processing library
 
Loading...
Searching...
No Matches
sigpack.h
Go to the documentation of this file.
1// This Source Code Form is subject to the terms of the Mozilla Public
2// License, v. 2.0. If a copy of the MPL was not distributed with this
3// file, You can obtain one at http://mozilla.org/MPL/2.0/.
4
5#ifndef ARMA_INCLUDES
6 #include <armadillo>
7#endif
8
9#ifndef SIGPACK_H
10 #define SIGPACK_H
11
12 #define SP_VERSION_MAJOR 1
13 #define SP_VERSION_MINOR 3
14 #define SP_VERSION_PATCH 0
15
16 #include "base/base.h"
17 #include "window/window.h"
18 #include "filter/filter.h"
20 #include "spectrum/spectrum.h"
21 #include "timing/timing.h"
22 #include "gplot/gplot.h"
23 #include "parser/parser.h"
24 #ifdef HAVE_FFTW
25 #include "fftw/fftw.h"
26 #endif
27 #include "image/image.h"
28 #include "kalman/kalman.h"
29
30#endif