sensorfw
datatypes/timedunsigned.h
Go to the documentation of this file.
00001 
00026 #ifndef TIMED_UNSIGNED_H
00027 #define TIMED_UNSIGNED_H
00028 
00029 #include <datatypes/genericdata.h>
00030 
00034 class TimedUnsigned : public TimedData {
00035 public:
00039     TimedUnsigned() : TimedData(0), value_(0) {}
00040 
00047     TimedUnsigned(const quint64& timestamp, unsigned value) : TimedData(timestamp), value_(value) {}
00048 
00049     unsigned value_; 
00050 };
00051 
00052 Q_DECLARE_METATYPE ( TimedUnsigned )
00053 
00054 #endif // TIMED_UNSIGNED_H