My Project
mainwindow.h
Go to the documentation of this file.
1 #ifndef MAINWINDOW_H
2 #define MAINWINDOW_H
3 
5 
6 #include <QMainWindow>
7 #include "qcustomplot.h"
8 using namespace std;
9 namespace Ui {
10 class MainWindow;
11 }
12 
13 class MainWindow : public QMainWindow
14 {
15  Q_OBJECT
16 
17 public:
18 
21  explicit MainWindow(QWidget *parent = 0);
22 
26  ~MainWindow();
27 
28 
47  void histo(string names[],
48  double values[], int size, string xAxisLabel, string yAxisLabel);
49 
50 
51 private:
52  Ui::MainWindow *ui;
53 
54  QCustomPlot *myPlot;
55 };
56 
57 #endif // MAINWINDOW_H
Definition: mainwindow.h:9
Definition: mainwindow.h:13