mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-11-03 21:40:52 -05:00 
			
		
		
		
	git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7286 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
		
			
				
	
	
		
			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
 |