iir1
Common.h
1 
36 #ifndef IIR1_COMMON_H
37 #define IIR1_COMMON_H
38 
39 //
40 // This must be the first file included in every DspFilters header and source
41 //
42 
43 #ifdef _MSC_VER
44 # pragma warning (disable: 4100)
45 #endif
46 
47 // This exports the classes/structures to the windows DLL
48 #ifdef _WIN32
49 #define DllExport __declspec( dllexport )
50 #define _CRT_SECURE_NO_WARNINGS
51 #else
52 #define DllExport
53 #endif
54 
55 #include <stdlib.h>
56 
57 #include <cassert>
58 #include <cfloat>
59 #include <cmath>
60 #include <complex>
61 #include <cstring>
62 #include <string>
63 #include <limits>
64 #include <vector>
65 
66 static const char orderTooHigh[] = "Requested order is too high. Provide a higher order for the template.";
67 
68 #define DEFAULT_FILTER_ORDER 4
69 
70 #endif