audio-blockEngine/eaudiofx/base/GeneratorSignal.h

27 lines
460 B
C++

/**
* @author Edouard DUPIN
*
* @copyright 2014, Edouard DUPIN, all right reserved
*
* @license BSD v3 (see license file)
*/
#ifndef __EAUDIOFX_GENERATOR_SIGNAL_H__
#define __EAUDIOFX_GENERATOR_SIGNAL_H__
#include <eaudiofx/core/BlockGenerator.h>
namespace eaudiofx {
class GeneratorSignal : public eaudiofx::BlockGenerator {
protected:
float m_phase;
public:
GeneratorSignal(void);
virtual ~GeneratorSignal(void) {};
};
};
#endif