You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
268 B
21 lines
268 B
|
3 years ago
|
#include <qmainwindow.h>
|
||
|
|
|
||
|
|
class Plot;
|
||
|
|
class Panel;
|
||
|
|
|
||
|
|
class MainWindow : public QMainWindow
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
MainWindow( QWidget *parent = 0 );
|
||
|
|
|
||
|
|
private Q_SLOTS:
|
||
|
|
void updatePlot();
|
||
|
|
void exportPlot();
|
||
|
|
|
||
|
|
private:
|
||
|
|
Plot *d_plot;
|
||
|
|
Panel *d_panel;
|
||
|
|
};
|