// Copyright 2015-2021 Mobilinkd LLC. #pragma once namespace modemm17 { template struct FilterBase { virtual NumericType operator()(NumericType input) = 0; }; } // modemm17