My Project
xyplotwindow.h
1 #ifndef MAINWINDOW_H
2 #define MAINWINDOW_H
3 
4 #include <QMainWindow>
5 #include "qcustomplot.h"
6 
7 namespace Ui {
8 class XYPlotWindow;
9 }
10 
11 class XYPlotWindow : public QMainWindow
12 {
13  Q_OBJECT
14 
15 public:
21  explicit XYPlotWindow(QWidget *parent = 0);
22 
28  ~XYPlotWindow();
29 
39  void AddPointToGraph(double x, double y);
40 
46  void Plot();
47 
48 
49 private:
50  Ui::XYPlotWindow *ui;
51  QVector<double> XX, YY;
52  QVector<double> XXN, YYN;
53 };
54 
55 #endif // MAINWINDOW_H
Definition: xyplotwindow.h:11
Definition: xyplotwindow.h:7
void Plot()
Grafica las coordenadas insertadas en los vectores XX y YY.
Definition: xyplotwindow.cpp:37
void AddPointToGraph(double x, double y)
Anade una coordenada (x,y) a los vectores XX y YY.
Definition: xyplotwindow.cpp:27
XYPlotWindow(QWidget *parent=0)
Constructor.
Definition: xyplotwindow.cpp:11
~XYPlotWindow()
Destructor.
Definition: xyplotwindow.cpp:53