audio-drain/audio/drain/EndPoint.hpp

32 lines
478 B
C++
Raw Permalink Normal View History

2015-04-10 23:00:13 +02:00
/** @file
* @author Edouard DUPIN
* @copyright 2011, Edouard DUPIN, all right reserved
* @license MPL v2.0 (see license file)
2015-04-10 23:00:13 +02:00
*/
#pragma once
2015-04-10 23:00:13 +02:00
2016-10-02 21:41:55 +02:00
#include <audio/drain/Algo.hpp>
2015-04-10 23:00:13 +02:00
namespace audio {
namespace drain{
class EndPoint : public Algo {
protected:
/**
* @brief Constructor
*/
EndPoint() {};
void init() {
drain::Algo::init();
};
public:
/**
* @brief Destructor
*/
virtual ~EndPoint() {
};
};
}
}