diff options
author | Josh Blum | 2011-06-07 22:55:41 -0400 |
---|---|---|
committer | Tom Rondeau | 2011-06-07 22:55:41 -0400 |
commit | bbf11bb338a4a88a1f270f77649212fea0b0cab0 (patch) | |
tree | 29a2465d3f2441d067971fa07fc22b39242f2b1d /gr-qtgui/lib/spectrumUpdateEvents.h | |
parent | eae515a2356a140e4407945eed21e56b90bb98d9 (diff) | |
download | gnuradio-bbf11bb338a4a88a1f270f77649212fea0b0cab0.tar.gz gnuradio-bbf11bb338a4a88a1f270f77649212fea0b0cab0.tar.bz2 gnuradio-bbf11bb338a4a88a1f270f77649212fea0b0cab0.zip |
qtgui: removed all traces of highResTimeFunctions.h
Diffstat (limited to 'gr-qtgui/lib/spectrumUpdateEvents.h')
-rw-r--r-- | gr-qtgui/lib/spectrumUpdateEvents.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gr-qtgui/lib/spectrumUpdateEvents.h b/gr-qtgui/lib/spectrumUpdateEvents.h index 9224cad08..5a17657b7 100644 --- a/gr-qtgui/lib/spectrumUpdateEvents.h +++ b/gr-qtgui/lib/spectrumUpdateEvents.h @@ -6,7 +6,7 @@ #include <QString> #include <complex> #include <vector> -#include <highResTimeFunctions.h> +#include <gruel/high_res_timer.h> class SpectrumUpdateEvent:public QEvent{ @@ -16,10 +16,10 @@ public: const double* realTimeDomainPoints, const double* imagTimeDomainPoints, const uint64_t numTimeDomainDataPoints, - const highres_timespec dataTimestamp, + const gruel::high_res_timer_type dataTimestamp, const bool repeatDataFlag, const bool lastOfMultipleUpdateFlag, - const highres_timespec generatedTimestamp, + const gruel::high_res_timer_type generatedTimestamp, const int droppedFFTFrames); ~SpectrumUpdateEvent(); @@ -29,10 +29,10 @@ public: const double* getImagTimeDomainPoints() const; uint64_t getNumFFTDataPoints() const; uint64_t getNumTimeDomainDataPoints() const; - highres_timespec getDataTimestamp() const; + gruel::high_res_timer_type getDataTimestamp() const; bool getRepeatDataFlag() const; bool getLastOfMultipleUpdateFlag() const; - highres_timespec getEventGeneratedTimestamp() const; + gruel::high_res_timer_type getEventGeneratedTimestamp() const; int getDroppedFFTFrames() const; protected: @@ -43,10 +43,10 @@ private: double* _imagDataTimeDomainPoints; uint64_t _numFFTDataPoints; uint64_t _numTimeDomainDataPoints; - highres_timespec _dataTimestamp; + gruel::high_res_timer_type _dataTimestamp; bool _repeatDataFlag; bool _lastOfMultipleUpdateFlag; - highres_timespec _eventGeneratedTimestamp; + gruel::high_res_timer_type _eventGeneratedTimestamp; int _droppedFFTFrames; }; |