sensorfw
normalizerfilter.h
Go to the documentation of this file.
1 
25 #ifndef NORMALIZERFILTER_H
26 #define NORMALIZERFILTER_H
27 
28 #include "filter.h"
29 #include "orientationdata.h"
30 
31 class NormalizerFilter : public QObject, public Filter<TimedXyzData, NormalizerFilter, double>
32 {
33  Q_OBJECT
34 
35 public:
37 
38 private:
39  void interpret(unsigned, const TimedXyzData* data);
40  quint64 prevTime;
41 };
42 
43 #endif
Class for vector type measurement data (timestamp, x, y, z).
Definition: genericdata.h:53
Datatypes for different filters.