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

24
DEC_GUI/breedqplot.h Normal file
View File

@@ -0,0 +1,24 @@
#ifndef BREEDQPLOT_H
#define BREEDQPLOT_H
#include <QWidget>
#include <QImage>
#include <QPainter>
#include <qmath.h>
#include <QMouseEvent>
#include <QVector>
#include <iostream>
#include "Kolch_Shind/qcustomplot.h"
#include <QTime>
class BreedQPlot : public QWidget
{
Q_OBJECT
public:
explicit BreedQPlot(QWidget *parent = 0);
public slots:
void drawGraphics(QCustomPlot *customPlot, int popInd);
};
#endif // BREEDQPLOT_H