#ifndef FIRFACTORY_H #define FIRFACTORY_H #include #include class FIRFactory { float sRate_hz; public: /** ctor */ FIRFactory(float sRate_hz) : sRate_hz(sRate_hz) { ; } // static std::vector getRealBandbass(float center_hz, float width_hz, float sRate_hz, int size) { // } // static std::vector> getComplexBandbass(float center_hz, float width_hz, float sRate_hz, int size) { // } } #endif // FIRFACTORY_H