26 lines
388 B
C
26 lines
388 B
C
|
/**
|
||
|
* @author Edouard DUPIN
|
||
|
*
|
||
|
* @copyright 2014, Edouard DUPIN, all right reserved
|
||
|
*
|
||
|
* @license BSD v3 (see license file)
|
||
|
*/
|
||
|
|
||
|
#ifndef __EAUDIOFX_PROCESSING_H__
|
||
|
#define __EAUDIOFX_PROCESSING_H__
|
||
|
|
||
|
#include <eaudiofx/core/audio.h>
|
||
|
#include <eaudiofx/core/Buffer.h>
|
||
|
|
||
|
namespace eaudiofx {
|
||
|
class Processing {
|
||
|
public:
|
||
|
Processing(void) {};
|
||
|
~Processing(void) {};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|