source: flair-src/trunk/tools/FlairGCS/src/ScopeVariableStep.h@ 13

Last change on this file since 13 was 10, checked in by Sanahuja Guillaume, 8 years ago

lic

File size: 608 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 {
11 public:
12 ScopeVariableStep(QString title,float ymin, float ymax,float view_size_s=20,unsigned int refresh_rate_ms=40,unsigned int history_size=20000);
13 ~ScopeVariableStep();
14 void plot(double value,QTime time,unsigned int curve_index=0);
15
16 private:
17
18};
19
20
21#endif // SCOPEVARIABLESTEP_H_INCLUDED
Note: See TracBrowser for help on using the repository browser.