mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-31 04:50:29 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			200 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			200 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright 2015-2021 modemm17 LLC.
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| namespace modemm17
 | |
| {
 | |
| 
 | |
| template <typename NumericType>
 | |
| struct FilterBase
 | |
| {
 | |
| 	virtual NumericType operator()(NumericType input) = 0;
 | |
| };
 | |
| 
 | |
| } // modemm17
 |