source: flair-src/trunk/tools/FlairGCS/src/ScopeVariableStep.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: 643 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 SCOPEVARIABLESTEP_H_INCLUDED
6#define SCOPEVARIABLESTEP_H_INCLUDED
7
8#include <Scope.h>
9
10class ScopeVariableStep : public Scope {
11public:
12 ScopeVariableStep(QString title, float ymin, float ymax,
13 float view_size_s = 20, unsigned int refresh_rate_ms = 40,
14 unsigned int history_size = 20000);
15 ~ScopeVariableStep();
16 void plot(double value, QTime time, unsigned int curve_index = 0);
17
18private:
19};
20
21#endif // SCOPEVARIABLESTEP_H_INCLUDED
Note: See TracBrowser for help on using the repository browser.