mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-11-05 05:50:58 -05:00
15 lines
203 B
C
15 lines
203 B
C
|
|
// Copyright 2015-2021 Mobilinkd LLC.
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace mobilinkd
|
||
|
|
{
|
||
|
|
|
||
|
|
template <typename NumericType>
|
||
|
|
struct FilterBase
|
||
|
|
{
|
||
|
|
virtual NumericType operator()(NumericType input) = 0;
|
||
|
|
};
|
||
|
|
|
||
|
|
} // mobilinkd
|