Last change
on this file since 15 was 15, checked in by Bayard Gildas, 8 years ago |
sources reformatted with flair-format-dir script
|
File size:
1.2 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 EulerDerivative.h
|
---|
7 | * \brief Classe permettant le calcul d'une derivee d'Euler
|
---|
8 | * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253
|
---|
9 | * \date 2011/05/01
|
---|
10 | * \version 4.0
|
---|
11 | */
|
---|
12 |
|
---|
13 | #ifndef EULERDERIVATIVE_IMPL_H
|
---|
14 | #define EULERDERIVATIVE_IMPL_H
|
---|
15 |
|
---|
16 | #include <IODevice.h>
|
---|
17 |
|
---|
18 | namespace flair {
|
---|
19 | namespace core {
|
---|
20 | class cvmatrix;
|
---|
21 | }
|
---|
22 | namespace gui {
|
---|
23 | class LayoutPosition;
|
---|
24 | class DoubleSpinBox;
|
---|
25 | }
|
---|
26 | namespace filter {
|
---|
27 | class EulerDerivative;
|
---|
28 | }
|
---|
29 | }
|
---|
30 |
|
---|
31 | /*! \class EulerDerivative
|
---|
32 | * \brief Classe permettant le calcul d'une derivee d'Euler
|
---|
33 | */
|
---|
34 |
|
---|
35 | class EulerDerivative_impl {
|
---|
36 | public:
|
---|
37 | EulerDerivative_impl(flair::filter::EulerDerivative *self,
|
---|
38 | const flair::gui::LayoutPosition *position,
|
---|
39 | std::string name,
|
---|
40 | const flair::core::cvmatrix *init_value = NULL);
|
---|
41 | ~EulerDerivative_impl();
|
---|
42 | void UpdateFrom(const flair::core::io_data *data);
|
---|
43 | flair::core::cvmatrix *output;
|
---|
44 |
|
---|
45 | private:
|
---|
46 | flair::gui::DoubleSpinBox *T;
|
---|
47 | flair::core::Time previous_time;
|
---|
48 | bool first_update;
|
---|
49 | flair::core::cvmatrix *prev_value;
|
---|
50 | };
|
---|
51 |
|
---|
52 | #endif // EULERDERIVATIVE_IMPL_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.