Init version

This commit is contained in:
2024-10-03 18:43:04 +07:00
commit f80052961f
186 changed files with 71676 additions and 0 deletions

26
DEC_GUI/derrep2013qplot.h Normal file
View File

@@ -0,0 +1,26 @@
#ifndef DERREP2013QPLOT_H
#define DERREP2013QPLOT_H
#include <QWidget>
#include <QImage>
#include <QPainter>
#include <qmath.h>
#include <QMouseEvent>
#include <QVector>
#include <iostream>
#include "Kolch_Shind/qcustomplot.h"
#include <QTime>
class DerRep2013QPlot : public QWidget
{
Q_OBJECT
public:
explicit DerRep2013QPlot(QWidget *parent = 0);
void setGraphics(QCustomPlot *customPlot, int popNum, QString name, QColor &color);
int randInt(int low, int high);
public slots:
void drawGraphics(QCustomPlot *customPlot);
};
#endif // DERREP2013QPLOT_H