QT5 -- Add Qwt 6.1-multiaxes

This commit is contained in:
Mark Liversedge
2013-12-09 10:02:47 +00:00
parent 03d3afdf53
commit 5abf8776f1
492 changed files with 97336 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
#ifndef _MAINWINDOW_H_
#define _MAINWINDOW_H_ 1
#include <qmainwindow.h>
class Plot;
class MainWindow: public QMainWindow
{
Q_OBJECT
public:
MainWindow();
private:
void setSamples( int samples );
private:
Plot *d_plot;
};
#endif