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

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

lic

File size: 588 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
10
11class 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.