source: flair-src/trunk/lib/FlairFilter/src/unexported/LowPassFilter_impl.h

Last change on this file was 223, checked in by Sanahuja Guillaume, 6 years ago

add delta time to io_data

File size: 1.1 KB
Line 
1// %flair:license{
2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
4// %flair:license}
5/*!
6 * \file LowPassFilter_impl.h
7 * \brief Classe permettant le calcul d'un filtre passe bas
8 * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253
9 * \date 2011/05/01
10 * \version 4.0
11 */
12
13#ifndef LOWPASSFILTER_FILTER_IMPL_H
14#define LOWPASSFILTER_FILTER_IMPL_H
15
16#include <IODevice.h>
17
18namespace flair {
19namespace core {
20class Matrix;
21}
22namespace gui {
23class LayoutPosition;
24class SpinBox;
25class DoubleSpinBox;
26}
27namespace filter {
28class LowPassFilter;
29}
30}
31
32class LowPassFilter_impl {
33
34public:
35 LowPassFilter_impl(const flair::filter::LowPassFilter *self,
36 const flair::gui::LayoutPosition *position,
37 std::string name,
38 const flair::core::Matrix *init_value = NULL);
39 ~LowPassFilter_impl();
40 void UpdateFrom(const flair::core::io_data *data);
41 flair::core::Matrix *output;
42
43private:
44 flair::gui::DoubleSpinBox *freq, *T;
45 const flair::filter::LowPassFilter *self;
46};
47
48#endif // LOWPASSFILTER_FILTER_IMPL_H
Note: See TracBrowser for help on using the repository browser.