audio-drain/drain/EndPoint.h

31 lines
489 B
C
Raw Normal View History

/** @file
* @author Edouard DUPIN
* @copyright 2011, Edouard DUPIN, all right reserved
* @license APACHE v2.0 (see license file)
*/
#ifndef __AIRT_ALGO_END_POINT_H__
#define __AIRT_ALGO_END_POINT_H__
2015-02-05 19:10:53 +01:00
#include <drain/Algo.h>
2015-02-05 19:10:53 +01:00
namespace drain{
class EndPoint : public Algo {
2015-01-29 21:46:01 +01:00
protected:
/**
* @brief Constructor
*/
EndPoint() {};
2015-01-29 21:46:01 +01:00
void init() {
2015-02-05 19:10:53 +01:00
drain::Algo::init();
2015-01-29 21:46:01 +01:00
};
public:
/**
* @brief Destructor
*/
virtual ~EndPoint() {};
};
};
#endif