#include <aims/signalfilter/filteringfunction.h>
#include <cartodata/volume/volume.h>
#include <set>
#include <string>
#include <map>
#include <vector>
Go to the source code of this file.
◆ AIMS_DECLARE_LINFILTERFUNC_BASIC
#define AIMS_DECLARE_LINFILTERFUNC_BASIC |
( |
|
NAME | ) |
|
Value:
}; \
template <typename T> \
NAME<T>::NAME( const NAME<T> & other ) {} \
template <typename T> \
NAME<T>::~NAME() {} \
template <typename T> \
NAME<T> & NAME<T>::operator=( const NAME<T> & other ) {}
#define AIMS_DECLARE_LINFILTERUNC_CUSTOMIZED(NAME)
Definition at line 135 of file filteringfunction_linear.h.
◆ AIMS_DECLARE_LINFILTERUNC_CUSTOMIZED
#define AIMS_DECLARE_LINFILTERUNC_CUSTOMIZED |
( |
|
NAME | ) |
|
Value: template <typename T> \
class NAME: public LinearFilteringFunction<T> \
{ \
public: \
{ setOptions( options ); } \
NAME( const NAME<T> & other ); \
NAME<T> & operator=( const NAME<T> & ); \
virtual ~NAME(); \
virtual NAME<T> *clone() const { return new NAME<T>(*this); } \
const std::vector<int> & getAmplitude() const; \
const AlgorithmCaller::LaunchExecution execute
Definition at line 119 of file filteringfunction_linear.h.