You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

35 lines
450 B
C++

#ifndef GSPLOT_H
#define GSPLOT_H
#pragma once
#include "qcustomplot.h"
#include "gs_headers.h"
class GSPlot : public QCustomPlot
{
Q_OBJECT
public:
void UpdatePlot(qint16 xVal, qint32 yVal);
GSPlot(QWidget* parent = nullptr);
~GSPlot();
private:
qint32 xAxisRange;
qint32 yAxisRange;
private slots:
void makePlot();
public slots:
//Plots Container
};
#endif // GSPLOT_H