28 lines
		
	
	
		
			393 B
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			28 lines
		
	
	
		
			393 B
		
	
	
	
		
			C
		
	
	
	
	
	
|   | #ifndef MAINWINDOW_H
 | ||
|  | #define MAINWINDOW_H
 | ||
|  | 
 | ||
|  | #include <QMainWindow>
 | ||
|  | #include <QTimer>
 | ||
|  | #include "qcustomplot.h"
 | ||
|  | 
 | ||
|  | namespace Ui { | ||
|  | class MainWindow; | ||
|  | } | ||
|  | 
 | ||
|  | class MainWindow : public QMainWindow | ||
|  | { | ||
|  |   Q_OBJECT | ||
|  |    | ||
|  | public: | ||
|  |   explicit MainWindow(QWidget *parent = 0); | ||
|  |   ~MainWindow(); | ||
|  |    | ||
|  |   void setupPlot(); | ||
|  |   void plotspec(QCustomPlot *customPlot); | ||
|  | 
 | ||
|  | private: | ||
|  |   Ui::MainWindow *ui; | ||
|  | }; | ||
|  | 
 | ||
|  | #endif // MAINWINDOW_H
 |