/**************************************************************************** | Digital Audio Processor | ======================= | | Filename : rectifie.h | | Object : DSPKitRectifier | | Description : DSPKitRectifier | | (c) Richard Kent 1996 | | $Id: rectifie.h,v 1.1 2003/09/10 00:06:25 rk Exp $ | ****************************************************************************/ #ifndef _DSPKIT_RECTIFIER_H_ #define _DSPKIT_RECTIFIER_H_ #include "processo.h" class DSPKitRectifier : public DSPKitProcessor { public: int getSample (double &outputSample); }; #endif /***************************************************************************/