#include <aims/signalfilter/filteringfunction.h>
#include <set>
#include <string>
#include <map>
Go to the source code of this file.
◆ AIMS_DECLARE_ELEMENTFILTERFUNC_BASIC
#define AIMS_DECLARE_ELEMENTFILTERFUNC_BASIC |
( |
|
NAME | ) |
|
Value:
}; \
AIMS_DEFINE_ELEMENTFILTERFUNC_BASIC(NAME)
#define AIMS_DECLARE_ELEMENTFILTERFUNC_CUSTOMIZED(NAME)
Definition at line 146 of file filteringfunction_element.h.
◆ AIMS_DECLARE_ELEMENTFILTERFUNC_CUSTOMIZED
#define AIMS_DECLARE_ELEMENTFILTERFUNC_CUSTOMIZED |
( |
|
NAME | ) |
|
Value: template <typename T> \
class NAME: public ElementFilteringFunction<T> \
{ \
public: \
{ setOptions( options ); } \
NAME( const NAME<T> & other ); \
virtual ~NAME(); \
NAME<T> & operator=( const NAME<T> & other ); \
virtual NAME<T> *clone() const { return new NAME<T>(*this); } \
const AlgorithmCaller::LaunchExecution execute
Definition at line 120 of file filteringfunction_element.h.
◆ AIMS_DEFINE_ELEMENTFILTERFUNC_BASIC
#define AIMS_DEFINE_ELEMENTFILTERFUNC_BASIC |
( |
|
NAME | ) |
|
Value: template <typename T> \
NAME<T>::NAME( const NAME<T> & ) : ElementFilteringFunction<T>() {} \
template <typename T> \
NAME<T>::~NAME() {} \
template <typename T> \
NAME<T> & NAME<T>::operator=( const NAME<T> & ) { return *this; } \
template <typename T> \
Definition at line 136 of file filteringfunction_element.h.