source: flair-src/trunk/tools/FlairGCS/src/ScopeFixedStep.h@ 15

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