sensorfw
timedunsigned.h
Go to the documentation of this file.
1 
26 #ifndef TIMED_UNSIGNED_H
27 #define TIMED_UNSIGNED_H
28 
29 #include <datatypes/genericdata.h>
30 
34 class TimedUnsigned : public TimedData {
35 public:
40 
47  TimedUnsigned(const quint64& timestamp, unsigned value) : TimedData(timestamp), value_(value) {}
48 
49  unsigned value_;
50 };
51 
53 
54 #endif // TIMED_UNSIGNED_H
Datatype for unsigned integer value with timestamp.
Definition: timedunsigned.h:34
Q_DECLARE_METATYPE(TMatrix)
unsigned value_
Measurement value.
Definition: timedunsigned.h:49
TimedUnsigned()
Default constructor.
Definition: timedunsigned.h:39
Basic datatypes for filters.
A base class for measurement data that contain timestamp.
Definition: genericdata.h:35
TimedUnsigned(const quint64 &timestamp, unsigned value)
Constructor.
Definition: timedunsigned.h:47