Class filter¶
class filter<T> demo¶
template <typename T>
class filter { … }
A generic filter interface.
This abstract base class defines the interface for filters that can process data arrays of a given type.
| T | The data type of the elements to filter. |
destructor ~filter<T>() ¶
virtual ~filter()
function apply(T *, size_t) ¶
virtual void apply(T* data, size_t size) = 0
Applies the filter to a data array.
| data | Pointer to the input/output data buffer. |
| size | Number of elements in the buffer. |
Fully qualified name: ns::filter<T>::apply(T *, size_t)
Declared at library.hpp:420
Fully qualified name: ns::filter<T>
Declared at library.hpp:411
This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.