1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-05-23 18:52:28 -04:00
sdrangel/modemm17/Filter.h

15 lines
201 B
C
Raw Normal View History

2022-07-20 09:07:00 +02:00
// Copyright 2015-2021 Mobilinkd LLC.
#pragma once
2022-07-04 23:03:07 +02:00
namespace modemm17
{
template <typename NumericType>
struct FilterBase
{
virtual NumericType operator()(NumericType input) = 0;
};
2022-07-04 23:03:07 +02:00
} // modemm17