sdrangel/modemm17/Filter.h

15 lines
201 B
C
Raw Permalink Normal View History

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