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 | #ifndef SCOPEFIXEDSTEP_H_INCLUDED
|
---|
6 | #define SCOPEFIXEDSTEP_H_INCLUDED
|
---|
7 |
|
---|
8 | #include <Scope.h>
|
---|
9 |
|
---|
10 |
|
---|
11 | class ScopeFixedStep: public Scope {
|
---|
12 | public:
|
---|
13 | ScopeFixedStep(QString title,float ymin, float ymax,float step_s,float view_size_s=20,unsigned int refresh_rate_ms=40,unsigned int history_size=20000);
|
---|
14 | ~ScopeFixedStep();
|
---|
15 | void plot(double* value);
|
---|
16 |
|
---|
17 | protected:
|
---|
18 | float step_s;
|
---|
19 | };
|
---|
20 |
|
---|
21 |
|
---|
22 | #endif // SCOPEFIXEDSTEP_H_INCLUDED
|
---|
Note:
See
TracBrowser
for help on using the repository browser.