10 #ifndef __SOT_FIRFILTER_IMPL_HH__
11 #define __SOT_FIRFILTER_IMPL_HH__
20 #if defined(fir_filter_EXPORTS)
21 #define FIL_FILTER_EXPORT __declspec(dllexport)
23 #define FIL_FILTER_EXPORT __declspec(dllimport)
26 #define FIL_FILTER_EXPORT
30 #define DECLARE_SPECIFICATION(className, sotSigType, sotCoefType) \
31 class FIL_FILTER_EXPORT className \
32 : public FIRFilter<sotSigType, sotCoefType> { \
34 className(const std::string &name); \
37 #define DECLARE_SPECIFICATION(className, sotSigType, sotCoefType) \
38 typedef FIRFilter<sotSigType, sotCoefType> className;
#define DECLARE_SPECIFICATION(className, sotSigType, sotCoefType)
Definition: fir-filter-impl.hh:37
Definition: abstract-sot-external-interface.hh:17