qt_demoe/third/qwtdemo/examples/scatterplot/mainwindow.h

23 lines
252 B
C
Raw Normal View History

2019-11-07 02:55:57 +00:00
#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