pulseplot.h
Go to the documentation of this file.00001 /***************************************************************************/ 00014 #ifndef PULSEPLOT_H 00015 #define PULSEPLOT_H 00016 00017 #include "setigraph.h" 00018 #include "setidefs.h" 00019 00033 class PulsePlot : public SetiGraph 00034 { 00035 Q_OBJECT 00036 00037 public: 00044 PulsePlot(QWidget *parent=0, const char *name=0); 00055 PulsePlot(SetiLoc* loc, QWidget *parent=0, const char *name=0); 00057 ~PulsePlot(); 00058 00059 public slots: 00065 void showNewPulseData(PulseScore score); 00066 00067 protected: // methods 00074 void init(); 00075 00076 protected: // attributes 00079 QArray<double> pulseData; 00081 PulseScore pulse; 00083 bool dataLoaded; 00084 }; 00085 00086 #endif

