00001 #ifndef TIMESPAN_H 00002 #define TIMESPAN_H TIMESPAN_H 00003 00004 #include "TimeReal.h" 00005 00006 #include <QtCore/QCoreApplication> 00007 00008 class Timespan { 00009 Q_DECLARE_TR_FUNCTIONS(Timespan) 00010 public: 00011 TimeReal begin; 00012 TimeReal end; 00013 00014 Timespan(const DataPointer& start); 00015 00016 QString toString() const; 00017 }; 00018 00019 #endif