27 lines
434 B
C
27 lines
434 B
C
|
/** @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__
|
||
|
|
||
|
#include <airtalgo/Algo.h>
|
||
|
|
||
|
namespace airtalgo{
|
||
|
class EndPoint : public Algo {
|
||
|
public:
|
||
|
/**
|
||
|
* @brief Constructor
|
||
|
*/
|
||
|
EndPoint() {};
|
||
|
/**
|
||
|
* @brief Destructor
|
||
|
*/
|
||
|
virtual ~EndPoint() {};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
#endif
|