25 lines
465 B
C++
25 lines
465 B
C++
#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
|