25 lines
422 B
C++
25 lines
422 B
C++
/**
|
|
* @author Edouard DUPIN
|
|
*
|
|
* @copyright 2014, Edouard DUPIN, all right reserved
|
|
*
|
|
* @license BSD v3 (see license file)
|
|
*/
|
|
|
|
#ifndef __EAUDIOFX_GENERATOR_FILE_H__
|
|
#define __EAUDIOFX_GENERATOR_FILE_H__
|
|
|
|
#include <eaudiofx/core/BlockGenerator.h>
|
|
|
|
namespace eaudiofx {
|
|
class GeneratorFile : public eaudiofx::BlockGenerator {
|
|
public:
|
|
GeneratorFile(void) {};
|
|
virtual ~GeneratorFile(void) {};
|
|
};
|
|
};
|
|
|
|
#endif
|
|
|
|
|