1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-19 03:16:38 -04:00
sdrangel/plugins/channelrx/demodm17/m17/Filter.h

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