35 lines
556 B
C
35 lines
556 B
C
|
/** @file
|
||
|
* @author Edouard DUPIN
|
||
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
||
|
* @license APACHE v2.0 (see license file)
|
||
|
*/
|
||
|
|
||
|
#ifndef __AUDIO_DRAIN_ALGO_END_POINT_H__
|
||
|
#define __AUDIO_DRAIN_ALGO_END_POINT_H__
|
||
|
|
||
|
#include <audio/drain/Algo.h>
|
||
|
|
||
|
namespace audio {
|
||
|
namespace drain{
|
||
|
class EndPoint : public Algo {
|
||
|
protected:
|
||
|
/**
|
||
|
* @brief Constructor
|
||
|
*/
|
||
|
EndPoint() {};
|
||
|
void init() {
|
||
|
drain::Algo::init();
|
||
|
};
|
||
|
public:
|
||
|
/**
|
||
|
* @brief Destructor
|
||
|
*/
|
||
|
virtual ~EndPoint() {
|
||
|
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|