2015-01-25 22:10:49 +01:00
|
|
|
/** @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-01-25 22:10:49 +01:00
|
|
|
|
2015-02-05 19:10:53 +01:00
|
|
|
namespace drain{
|
2015-01-25 22:10:49 +01:00
|
|
|
class EndPoint : public Algo {
|
2015-01-29 21:46:01 +01:00
|
|
|
protected:
|
2015-01-25 22:10:49 +01:00
|
|
|
/**
|
|
|
|
* @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:
|
2015-01-25 22:10:49 +01:00
|
|
|
/**
|
|
|
|
* @brief Destructor
|
|
|
|
*/
|
|
|
|
virtual ~EndPoint() {};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|