Skip to content

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.

Template parameters
T The data type of the elements to filter.

destructor ~filter<T>()

virtual ~filter()

Virtual destructor.

Fully qualified name: ns::filter<T>::~filter<T>()

Declared at library.hpp:415

function apply(T *, size_t)

virtual void apply(T* data, size_t size) = 0

Applies the filter to a data array.

Parameters
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.