git-svn-id: http://moon:8086/svn/software/trunk/libsrc/cpp@877 b431acfa-c32f-4a4a-93f1-934dc6c82436
15 lines
236 B
C++
15 lines
236 B
C++
#ifndef __RADIO_ABLOCK_H__
|
|
#define __RADIO_ABLOCK_H__
|
|
|
|
#include "Buffer.hpp"
|
|
|
|
template <typename T>
|
|
class ABlock
|
|
{
|
|
public:
|
|
virtual void process(Buffer<T> &buffer_in, Buffer<T> &buffer_out) = 0;
|
|
};
|
|
|
|
#endif // __RADIO_ABLOCK_H__
|
|
|